File tree 4 files changed +7
-8
lines changed
4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,14 @@ jobs:
27
27
npm i -g npm@8
28
28
- name : Install Dependencies
29
29
run : npm install
30
- - name : Run basic build
31
- run : npm run bootstrap
32
30
- name : Setup CI Git User
33
31
run : |
34
32
git config user.name twilio-labs-ci
35
33
git config user.email [email protected]
34
+ - name : Create new build
35
+ run : |
36
+ npm run clean
37
+ npm run build
36
38
- name : " Create Pull Request or Publish to npm"
37
39
uses : changesets/action@v1
38
40
with :
Original file line number Diff line number Diff line change 36
36
"build" : " tsc" ,
37
37
"watch" : " tsc --watch" ,
38
38
"build:noemit" : " tsc --noEmit" ,
39
- "clean" : " rimraf ./dist" ,
40
- "prepack" : " run-s clean build"
39
+ "clean" : " rimraf ./dist"
41
40
},
42
41
"devDependencies" : {
43
42
"@types/common-tags" : " ^1.8.0" ,
Original file line number Diff line number Diff line change 10
10
"watch" : " tsc --watch" ,
11
11
"build:noemit" : " tsc --noEmit" ,
12
12
"docs" : " typedoc --options typedoc.json" ,
13
- "clean" : " rimraf ./dist" ,
14
- "prepack" : " run-s clean build"
13
+ "clean" : " rimraf ./dist"
15
14
},
16
15
"publishConfig" : {
17
16
"access" : " public"
Original file line number Diff line number Diff line change 12
12
"scripts" : {
13
13
"clean" : " rimraf dist" ,
14
14
"build" : " tsc" ,
15
- "build:noemit" : " tsc --noEmit" ,
16
- "prepack" : " run-s clean build"
15
+ "build:noemit" : " tsc --noEmit"
17
16
},
18
17
"keywords" : [
19
18
" twilio" ,
You can’t perform that action at this time.
0 commit comments