package: bring lib/ back to the project

This commit is contained in:
Micooz 2017-09-02 11:21:56 +08:00
parent b4845c901a
commit fa356e35ac
2 changed files with 4 additions and 4 deletions

@ -2,5 +2,5 @@ if (process.env.NODE_ENV === 'development') {
require('babel-register');
module.exports = require('../src');
} else {
module.exports = require('../build');
module.exports = require('../lib');
}

@ -5,7 +5,7 @@
"main": "build/index.js",
"files": [
"bin",
"build",
"lib",
"AUTHORS"
],
"bin": {
@ -15,8 +15,8 @@
"test": "npm run lint && npm run test:coverage",
"test:coverage": "jest --coverage",
"lint": "eslint bin src pkg",
"compile": "cross-env NODE_ENV=production babel src --out-dir build --minified --ignore __tests__,__mocks__",
"bundle": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"compile": "cross-env NODE_ENV=production babel src --out-dir lib --minified --ignore __tests__,__mocks__",
"bundle": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress",
"prepkg": "rimraf build/blinksocks.js.map pkg/blinksocks-* pkg/sha256sum.txt",
"pkg": "pkg --out-path pkg/ --targets node8.3.0-linux-x64,node8.3.0-macos-x64,node8.3.0-win-x64 .",
"postpkg": "node pkg/postpkg.js",