Skip to content

Commit

Permalink
fix(Build): Remove unused flag with typo
Browse files Browse the repository at this point in the history
isolatedModules defaults to false so no need for explicit use of flag.

There was also a typo here `isolatedMOdules`
  • Loading branch information
m7kvqbe1 committed Jun 16, 2020
1 parent 81023aa commit f051716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/icon-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"build:cjs": "NODE_ENV=cjs webpack -p --config=webpack/prod.js",
"svgr": "rm -rf src/icons; svgr --ext tsx -d src/icons src/assets/**/; rm src/icons/index.tsx",
"exports": "./generate-exports.sh",
"types": "tsc --emitDeclarationOnly --declarationMap --declaration --noEmit false --isolatedMOdules false --allowJs false --outDir dist/types",
"types": "tsc --emitDeclarationOnly --declarationMap --declaration --noEmit false --allowJs false --outDir dist/types",
"prepare": "yarn build"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-component-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"storybook": "start-storybook -p 6006",
"test:watch": "NODE_ENV=test jest --watch",
"test": "NODE_ENV=test jest",
"types": "tsc --emitDeclarationOnly --declarationMap --declaration --noEmit false --isolatedMOdules false --allowJs false --outDir dist/types"
"types": "tsc --emitDeclarationOnly --declarationMap --declaration --noEmit false --allowJs false --outDir dist/types"
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": "eslint"
Expand Down

0 comments on commit f051716

Please sign in to comment.