Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit c6c2ff8

Browse files
committed
refactor(package): fix package generation scripts and version
1 parent f7ba7d5 commit c6c2ff8

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ coverage/**
77
npm-debug.log
88
commitlint.config.js
99
*.test.js
10+
**/__mocks__/**
1011

1112
.DS_Store
1213
.eslintcache

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "uber-cli",
3-
"description": "Uber CLI",
4-
"version": "0.0.3",
3+
"description": "CLI for Uber price and time estimates",
4+
"version": "0.0.0-development",
55
"author": "Jae Bradley",
66
"bin": {
77
"uber": "build/executables/uber.js"
@@ -40,7 +40,10 @@
4040
},
4141
"homepage": "https://github.com/jaebradley/uber-cli",
4242
"keywords": [
43-
"uber"
43+
"uber",
44+
"uber cli",
45+
"uber price",
46+
"uber time"
4447
],
4548
"jest": {
4649
"testEnvironment": "node",
@@ -61,10 +64,10 @@
6164
"codecov": "codecov",
6265
"commitmsg": "commitlint -e $GIT_PARAMS",
6366
"build": "babel src/ -d build/ --delete-dir-on-start",
64-
"build:prod": "BABEL_ENV=production npm run compile",
67+
"build:prod": "BABEL_ENV=production npm run build",
6568
"lint": "eslint --ext .js .",
6669
"test": "jest",
67-
"prepublishOnly": "npm run compile:prod",
70+
"prepublishOnly": "npm run build:prod",
6871
"gc": "commit",
6972
"semantic-release": "semantic-release",
7073
"travis-deploy-once": "travis-deploy-once"

0 commit comments

Comments
 (0)