chore: Remove unneeded build stages

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall 2020-03-14 11:06:13 +13:00
parent 62b5f2cc86
commit b44c29521d
No known key found for this signature in database
GPG Key ID: 94AE1ACB662A2A6D
1 changed files with 4 additions and 17 deletions

View File

@ -4,15 +4,15 @@
"description": "A light-weight module that brings window.fetch to node.js",
"main": "./dist/dist-src",
"files": [
"src/**/*",
"dist/**/*",
"types/**/*.d.ts"
"src",
"dist",
"*.d.ts"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "pika-pack --out dist/",
"build": "pika build --out dist/",
"prepublishOnly": "npm run build",
"test": "cross-env BABEL_ENV=test mocha --require @babel/register --throw-deprecation test/*.js",
"report": "cross-env BABEL_ENV=coverage nyc --reporter lcov --reporter text mocha -R spec test/*.js",
@ -43,8 +43,6 @@
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-copy-assets": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"abort-controller": "^3.0.0",
"abortcontroller-polyfill": "^1.4.0",
@ -71,17 +69,6 @@
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-types"
],
[
"@pika/plugin-copy-assets",
{
"files": [
"externals.d.ts"
]
}
]
]
},