File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 27
27
with :
28
28
args : --cache-control max-age=300,public
29
29
env :
30
- FILE : dist/rollup.browser.js
30
+ FILE : browser/ dist/rollup.browser.js
31
31
AWS_REGION : ${{ secrets.AWS_REGION }}
32
32
S3_BUCKET : ${{ secrets.AWS_S3_BUCKET }}
33
33
S3_KEY : ${{ github.event.number }}/rollup.browser.js
38
38
with :
39
39
args : --cache-control max-age=300,public
40
40
env :
41
- FILE : dist/rollup.browser.js.map
41
+ FILE : browser/ dist/rollup.browser.js.map
42
42
AWS_REGION : ${{ secrets.AWS_REGION }}
43
43
S3_BUCKET : ${{ secrets.AWS_S3_BUCKET }}
44
44
S3_KEY : ${{ github.event.number }}/rollup.browser.js.map
Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ test/tmp
14
14
test /typescript /typings
15
15
perf /
16
16
.nyc_output /
17
+ .github_token
Original file line number Diff line number Diff line change 11
11
"scripts" : {
12
12
"build" : " shx rm -rf dist && node scripts/update-git-commit.js && rollup --config rollup.config.ts --configPlugin typescript && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup" ,
13
13
"build:cjs" : " shx rm -rf dist && rollup --config rollup.config.ts --configPlugin typescript --configTest && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup" ,
14
- "build:bootstrap" : " node dist/bin/rollup --config rollup.config.ts --configPlugin typescript && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup" ,
14
+ "build:bootstrap" : " node dist/bin/rollup --config rollup.config.ts --configPlugin typescript && shx cp src/rollup/types.d.ts dist/rollup.d.ts && shx chmod a+x dist/bin/rollup && cp -r dist browser/ " ,
15
15
"ci:lint" : " npm run lint:nofix" ,
16
16
"ci:test" : " npm run build:cjs && npm run build:bootstrap && npm run test:all" ,
17
17
"ci:test:only" : " npm run build:cjs && npm run build:bootstrap && npm run test:only" ,
You can’t perform that action at this time.
0 commit comments