Skip to content

Commit

Permalink
fix module type, default is commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
monken committed Sep 22, 2022
1 parent 0dc4cb9 commit 08f5ee5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@emdgroup/dynamodb-paginator",
"version": "2.1.0",
"version": "2.1.1",
"main": "dist/cjs/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"types": "dist/cjs/index.d.ts",
"type": "module",
"type": "commonjs",
"repository": "https://github.com/emdgroup/dynamodb-paginator.git",
"author": "Moritz Onken <onken@netcubed.de>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -45,7 +45,7 @@
"build": "tsc && tsc --module commonjs --outDir dist/cjs",
"docs": "yarn --silent docs:build && yarn --silent docs:merge",
"docs:build": "rm -rf docs README.md && yarn --silent typedoc --hideInPageTOC --excludeNotDocumented --disableSources --theme github-wiki src/index.ts",
"docs:merge": "node --loader=ts-node/esm bin/merge-docs.ts",
"docs:merge": "node --loader=ts-node/esm bin/merge-docs.mts",
"test": "mocha --bail --watch-files '**/*.ts' --extension ts --timeout 60000 'src/**/*.spec.ts'"
}
}

0 comments on commit 08f5ee5

Please sign in to comment.