diff --git a/package.json b/package.json index f02246d..19c192b 100644 --- a/package.json +++ b/package.json @@ -22,13 +22,13 @@ }, "scripts": { "test": "jest", - "build": "npm run build:production", - "build:production": "tsc", + "build": "npm run build:release", + "build:release": "tsc", "build:debug": "tsc -p tsconfig.debug.json", "watch": "npm run watch:debug", "watch:debug": "npm run build:debug -- --watch", "doc": "typedoc --entryPoints src/index.ts --html build/doc", "mypublish": "ts-node -P tsconfig.node.json scripts/publish.ts", - "dist": "ts-node -P tsconfig.node.json scripts/pack.ts build/production dist" + "dist": "ts-node -P tsconfig.node.json scripts/pack.ts build/release dist" } } diff --git a/tsconfig.json b/tsconfig.json index 273eaef..4cd6541 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "allowJs": false, "declaration": true, "declarationMap": true, - "outDir": "build/production", + "outDir": "build/release", "baseUrl": "./", "paths": { "*": ["node/modules/*"] }, "lib": ["esnext.weakref", "dom"]