Skip to content

Commit

Permalink
fix(package): npm export
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Aug 19, 2019
1 parent c8477c3 commit fbc40b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
- run: npm run build
- run: npm run build:package
- run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/commit-analyzer @semantic-release/release-notes-generator @qiwi/semantic-release-gh-pages-plugin
- run: git checkout package.json package-lock.json
- run: ./node_modules/.bin/semantic-release
- save_cache: *save-deps-cache

Expand Down
9 changes: 1 addition & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "react-scripts build",
"lint": "tslint --fix -p .",
"test": "npm run lint && react-scripts test --coverage --passWithNoTests",
"build:package": "tsc --noEmit false --outDir package --jsx react --declaration true --allowJs false --isolatedModules false && mv package/exports.d.ts package/index.d.ts && mv package/exports.js package/index.js"
"build:package": "tsc --noEmit false --outDir package --jsx react --declaration true --allowJs false --isolatedModules false --target es5 --module commonjs && mv package/exports.d.ts package/index.d.ts && mv package/exports.js package/index.js"
},
"author": "",
"license": "Apache-2.0",
Expand Down Expand Up @@ -44,13 +44,6 @@
"@material-ui/icons": "^4.2.1",
"@open-rpc/client-js": "^1.1.0",
"@open-rpc/meta-schema": "^1.5.3",
"@qiwi/semantic-release-gh-pages-plugin": "^1.10.5",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.3.0",
"qs": "^6.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
Expand Down

0 comments on commit fbc40b7

Please sign in to comment.