We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0b6c7c commit 4edc5e2Copy full SHA for 4edc5e2
2 files changed
.travis.yml
@@ -7,7 +7,8 @@ install:
7
before_script:
8
- npm install
9
script:
10
-- npm run build
+- npm run clean
11
+- npm run build-typescript
12
- npm run coverage
13
- codecov --disable=gcov
14
notifications:
package.json
@@ -105,7 +105,8 @@
105
"url": "git+https://github.com/AndcultureCode/AndcultureCode.JavaScript.React.Components.git"
106
},
107
"scripts": {
108
- "build": "tsc --pretty --project tsconfig.dist.json",
+ "build": "npm run build-typescript",
109
+ "build-typescript": "tsc --pretty --project tsconfig.dist.json",
110
"build-storybook": "build-storybook -o storybook",
111
"clean": "rimraf dist && rimraf coverage",
112
"coverage": "react-scripts test --coverage --watchAll=false",
0 commit comments