Skip to content

Commit

Permalink
🤖 configure(build): Upgrade build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Jun 27, 2022
1 parent fda1ad7 commit eeb3f5c
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"test": "ava",
"build": "./node_modules/.bin/aureooms-node-package-build",
"build": "NODE_ENV=production microbundle",
"build-docs": "esdoc",
"lint": "true"
},
Expand Down Expand Up @@ -50,7 +50,7 @@
"author": "aureooms",
"name": "@aureooms/js-type",
"homepage": "http://make-github-pseudonymous-again.github.io/js-type/",
"main": "js/dist/type.js",
"main": "dist/index.js",
"license": "AGPL-3.0",
"spm": {
"main": "js/dist/type.js"
Expand Down Expand Up @@ -150,5 +150,17 @@
"@babel/register"
],
"timeout": "1m"
},
"source": "src/index.js",
"module": "dist/index.module.mjs",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"exports": {
".": {
"browser": "./dist/index.module.mjs",
"umd": "./dist/index.umd.js",
"require": "./dist/index.js",
"default": "./dist/index.modern.mjs"
}
}
}

0 comments on commit eeb3f5c

Please sign in to comment.