Skip to content

Commit b6281b5

Browse files
authored
Merge branch 'master' into fix-preserveModulesRoot-in-windows
2 parents 42c3697 + fc08bcc commit b6281b5

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/repl-artefacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
args: --cache-control max-age=300,public
2929
env:
30-
FILE: dist/rollup.browser.js
30+
FILE: browser/dist/rollup.browser.js
3131
AWS_REGION: ${{ secrets.AWS_REGION }}
3232
S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
3333
S3_KEY: ${{ github.event.number }}/rollup.browser.js
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
args: --cache-control max-age=300,public
4040
env:
41-
FILE: dist/rollup.browser.js.map
41+
FILE: browser/dist/rollup.browser.js.map
4242
AWS_REGION: ${{ secrets.AWS_REGION }}
4343
S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
4444
S3_KEY: ${{ github.event.number }}/rollup.browser.js.map

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ test/tmp
1414
test/typescript/typings
1515
perf/
1616
.nyc_output/
17+
.github_token

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Rollup is a module bundler for JavaScript which compiles small pieces of code in
3535

3636
## Quick Start Guide
3737

38-
Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://rollupjs.org/#command-line-reference) with an optional configuration file, or else through its [JavaScript API](https://rollupjs.org/guide/en/#javascript-api). Run `rollup --help` to see the available options and parameters. The starter project templates, [rollup-starter-lib](https://github.com/rollup/rollup-starter-lib) and [rollup-starter-app](https://github.com/rollup/rollup-starter-app), demonstrate common configuration options, and more detailed instructions are available throughout the [user guide](https://rollupjs.org/).
38+
Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://rollupjs.org/#command-line-reference) with an optional configuration file or else through its [JavaScript API](https://rollupjs.org/guide/en/#javascript-api). Run `rollup --help` to see the available options and parameters. The starter project templates, [rollup-starter-lib](https://github.com/rollup/rollup-starter-lib) and [rollup-starter-app](https://github.com/rollup/rollup-starter-app), demonstrate common configuration options, and more detailed instructions are available throughout the [user guide](https://rollupjs.org/).
3939

4040
### Commands
4141

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"scripts": {
1212
"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",
1313
"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/",
1515
"ci:lint": "npm run lint:nofix",
1616
"ci:test": "npm run build:cjs && npm run build:bootstrap && npm run test:all",
1717
"ci:test:only": "npm run build:cjs && npm run build:bootstrap && npm run test:only",

0 commit comments

Comments
 (0)