Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 762b539

Browse files
author
Brandon Carroll
committed
fix: change babel output to dist
1 parent 00129c8 commit 762b539

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ node_js:
88
cache: npm
99
notifications:
1010
email: false
11+
branches:
12+
only:
13+
- master
1114
install: npm install
1215
script: npm run test:coverage
1316
jobs:
1417
include:
1518
- stage: release
16-
branches:
17-
only:
18-
- master
1919
node_js: '10'
2020
script: npm run semantic-release

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"commit:all": "npm run commit:add && npm run commit",
1616
"test": "jest",
1717
"pretty-quick": "pretty-quick --staged --pattern '**/*.(js|jsx|ts|tsx)'",
18-
"prepublish": "rm -rf build; babel src --out-dir build --ignore 'src/__tests__/*'",
18+
"prepublish": "rm -rf dist; babel src --out-dir dist --ignore 'src/__tests__/*'",
1919
"semantic-release": "semantic-release",
2020
"test:coverage": "jest --coverage",
2121
"test:watch": "jest --watch --coverage"

0 commit comments

Comments
 (0)