Skip to content

Commit

Permalink
Added single quotes to glob patters in lint commands in all package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
klis87 committed Jan 5, 2019
1 parent c3edf9b commit 20d3373
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/redux-saga-requests-axios/package.json
Expand Up @@ -23,7 +23,7 @@
},
"scripts": {
"clean": "rimraf es lib dist",
"lint": "eslint src/**",
"lint": "eslint 'src/**'",
"test": "jest",
"test:cover": "jest --coverage",
"test-types": "tsc types/index.d.spec.ts --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-saga-requests-fetch/package.json
Expand Up @@ -23,7 +23,7 @@
},
"scripts": {
"clean": "rimraf es lib dist",
"lint": "eslint src/**",
"lint": "eslint 'src/**'",
"test": "jest",
"test:cover": "jest --coverage",
"test-types": "tsc types/index.d.spec.ts --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-saga-requests-mock/package.json
Expand Up @@ -24,7 +24,7 @@
},
"scripts": {
"clean": "rimraf es lib dist",
"lint": "eslint src/**",
"lint": "eslint 'src/**'",
"test": "jest",
"test:cover": "jest --coverage",
"test-types": "tsc types/index.d.spec.ts --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-saga-requests/package.json
Expand Up @@ -24,7 +24,7 @@
"sideEffects": false,
"scripts": {
"clean": "rimraf es lib dist",
"lint": "eslint src/**",
"lint": "eslint 'src/**'",
"test": "jest",
"test:cover": "jest --coverage",
"test-types": "tsc types/index.d.spec.ts --noEmit",
Expand Down

0 comments on commit 20d3373

Please sign in to comment.