We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 590642e commit 179bfafCopy full SHA for 179bfaf
2 files changed
package.json
@@ -35,7 +35,8 @@
35
"test:lint": "eslint \"./src/**/*.+(ts|tsx)\"",
36
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
37
"test:watch": "react-scripts test --env=jsdom",
38
- "release": "npm run test && npm run prepare && dotenv release-it"
+ "release": "npm run test && npm run prepare && dotenv release-it",
39
+ "lint": "eslint . --ext .js,.ts,.tsx"
40
},
41
"peerDependencies": {
42
"react": "^16.0.0"
src/index.tsx
@@ -30,7 +30,7 @@ const ReactInputVerificationCode = ({
30
value: pValue,
31
dataCy = 'verification-code',
32
type = 'text',
33
- passwordMask = '•'
+ passwordMask = '•',
34
}: Props) => {
const emptyValue = new Array(length).fill(placeholder);
0 commit comments