Skip to content

Commit

Permalink
refactor: move to esm in sources (#10879)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangreen committed Nov 17, 2022
1 parent a6f1183 commit 5144127
Show file tree
Hide file tree
Showing 128 changed files with 950 additions and 693 deletions.
2 changes: 1 addition & 1 deletion helpers/helpers.d.ts
@@ -1 +1 @@
export * from '../dist/helpers.js';
export * from '../dist/helpers/index.js';
24 changes: 13 additions & 11 deletions package.json
Expand Up @@ -46,11 +46,14 @@
"auto/**",
"dist/**",
"!dist/docs/**",
"helpers/**"
"helpers/**",
"types/**/*.ts",
"!types/tests/**"
],
"scripts": {
"autobuild": "rollup -c -w",
"build": "tsc --noEmit && rollup -c",
"emitDeclarations": "tsc --emitDeclarationOnly",
"build": "rollup -c && pnpm emitDeclarations",
"dev": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers chrome --grep",
"dev:ff": "karma start ./karma.conf.cjs --auto-watch --no-single-run --browsers firefox --grep",
"docs": "pnpm run build && pnpm --filter \"./docs/**\" build",
Expand All @@ -67,12 +70,12 @@
},
"devDependencies": {
"@kurkle/color": "^0.2.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-inject": "^4.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-inject": "^5.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@size-limit/preset-big-lib": "^8.0.0",
"@swc/core": "^1.2.224",
"@swc/core": "^1.3.18",
"@types/estree": "^1.0.0",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
Expand Down Expand Up @@ -106,11 +109,10 @@
"moment": "^2.29.4",
"moment-timezone": "^0.5.34",
"pixelmatch": "^5.3.0",
"rollup": "^2.77.2",
"rollup": "^3.3.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-istanbul": "^3.0.0",
"rollup-plugin-swc3": "^0.3.0",
"rollup-plugin-istanbul": "^4.0.0",
"rollup-plugin-swc3": "^0.7.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^8.0.0",
"typescript": "^4.7.4",
Expand Down

0 comments on commit 5144127

Please sign in to comment.