Skip to content

Commit

Permalink
chore: move tsd to dev deps - OKTA-403207
Browse files Browse the repository at this point in the history
changelog
fix changelog
chore: upgrade deps
chore: fix multiple license banners in the bundle
chore: upgrade idx-js to 0.18.0
changelog

OKTA-403207
<<<Jenkins Check-In of Tested SHA: cf2b69e for eng_productivity_ci_bot_okta@okta.com>>>
Artifact: okta-auth-js
Files changed count: 4
PR Link: "#839"
  • Loading branch information
shuowu authored and eng-prod-CI-bot-okta committed Jun 28, 2021
1 parent 20b96e6 commit cde2fbc
Show file tree
Hide file tree
Showing 4 changed files with 1,718 additions and 1,786 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
### Bug Fixes

- [#832](https://github.com/okta/okta-auth-js/pull/832) Fixes issues with refresh tokens
- [#839](https://github.com/okta/okta-auth-js/pull/839) Fixes `@okta/okta-idx-js` missing core-js dependency.

### Other

- [#839](https://github.com/okta/okta-auth-js/pull/839)
- Moves `tsd` from dependencies to devDependencies
- Reduces bundles size by upgrading `@okta/okta-idx-js` to 0.18.0 (replaced `jsonpath` with `jsonpath-plus`)
- Reduces bundles size by removing unnecessary license banner

## 5.1.1

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@okta/okta-idx-js": "0.17.0",
"@okta/okta-idx-js": "0.18.0",
"@peculiar/webcrypto": "1.1.6",
"Base64": "1.1.0",
"atob": "^2.1.2",
Expand All @@ -80,7 +80,6 @@
"p-cancelable": "^2.0.0",
"text-encoding": "^0.7.0",
"tiny-emitter": "1.1.0",
"tsd": "^0.14.0",
"webcrypto-shim": "^0.1.5",
"xhr2": "0.1.3"
},
Expand Down Expand Up @@ -118,6 +117,7 @@
"shelljs": "0.8.4",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.1",
"tsd": "^0.17.0",
"typescript": "^4.2.3",
"webpack": "^4.43.0"
},
Expand Down Expand Up @@ -157,4 +157,4 @@
}
}
}
}
}
5 changes: 4 additions & 1 deletion webpack.common.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ var babelOptions = {
'@babel/plugin-proposal-class-properties',
'@babel/plugin-transform-runtime'
],
sourceType: 'unambiguous'
sourceType: 'unambiguous',
// the banners should only be added at the end of the build process
// ignore all comments during transpiling
shouldPrintComment: () => false
};

var babelExclude = /node_modules\/(?!p-cancelable)/;
Expand Down
Loading

0 comments on commit cde2fbc

Please sign in to comment.