diff --git a/.gitignore b/.gitignore index dba2eb8..148d4fe 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ node_modules # build output -out +dist # logs npm-debug.log diff --git a/package.json b/package.json index afbb02b..359c7d5 100644 --- a/package.json +++ b/package.json @@ -3,11 +3,11 @@ "version": "8.0.0-beta.2", "license": "Apache-2.0", "scripts": { - "build": "babel src/ -d out/ && chmod +x out/now.js", + "build": "babel src/ -d dist/ && chmod +x dist/now.js", "test": "eslint . && flow", "prepublish": "yarn run test && yarn run build", "lint:staged": "lint-staged", - "dev": "yarn run build && ./out/now.js" + "dev": "yarn run build && ./dist/now.js" }, "pre-commit": "lint:staged", "lint-staged": { @@ -17,16 +17,16 @@ "git add" ] }, - "main": "./out/now.js", + "main": "./dist/now.js", "files": [ - "out" + "dist" ], "bin": { - "now": "./out/now.js" + "now": "./dist/now.js" }, "eslintIgnore": [ "src/providers/sh/legacy/**", - "out" + "dist" ], "eslintConfig": { "parserOptions": {