Skip to content

Commit

Permalink
Merge pull request #18 from kinde-oss/dave/rollback-esm
Browse files Browse the repository at this point in the history
remove module version
  • Loading branch information
peterphanouvong authored Apr 17, 2023
2 parents 92c834e + 6e28cf8 commit ca8bf88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
{
"name": "@kinde-oss/kinde-auth-nextjs",
"version": "1.2.0",
"version": "1.3.0",
"description": "Kinde Auth SDK for NextJS",
"main": "dist/kinde-auth-nextjs.common.js",
"module": "dist/kinde-auth-nextjs.esm.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "genversion --es6 src/utils/version.js && rollup -c",
"test": "jest"
Expand Down
6 changes: 1 addition & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,8 @@ export default {
input: "src/index.js",
output: [
{
file: "dist/kinde-auth-nextjs.common.js",
file: "dist/index.js",
format: "cjs",
},
{
file: "dist/kinde-auth-nextjs.esm.js",
format: "es",
},
],
};
2 changes: 1 addition & 1 deletion src/utils/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ca8bf88

Please sign in to comment.