From b16c1366de481348a5adcc4dc9d38900755a0958 Mon Sep 17 00:00:00 2001 From: Alex <93376818+sashashura@users.noreply.github.com> Date: Tue, 6 Sep 2022 07:14:17 +0200 Subject: [PATCH 1/5] Reduce permissions for repl-artefacts.yml workflow (#4630) Signed-off-by: sashashura <93376818+sashashura@users.noreply.github.com> Signed-off-by: sashashura <93376818+sashashura@users.noreply.github.com> Co-authored-by: Lukas Taegert-Atkinson --- .github/workflows/repl-artefacts.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/repl-artefacts.yml b/.github/workflows/repl-artefacts.yml index 564f1b93f9d..04f8d067986 100644 --- a/.github/workflows/repl-artefacts.yml +++ b/.github/workflows/repl-artefacts.yml @@ -4,8 +4,13 @@ on: pull_request_target: types: [synchronize, opened, reopened, labeled] +permissions: + contents: read + jobs: upload: + permissions: + issues: write # for peter-evans/find-comment and peter-evans/create-or-update-comment if: ${{ github.event.pull_request.head.repo.full_name == 'rollup/rollup' || contains( toJson(github.event.pull_request.labels), 'x⁸ ⚙️ build repl artefacts' ) }} runs-on: ubuntu-latest name: Upload From 7750d95d083afbff6a9fb6d9965dc9b1d575ed96 Mon Sep 17 00:00:00 2001 From: takurinton Date: Mon, 12 Sep 2022 16:22:24 +0900 Subject: [PATCH 2/5] fix: contributors link --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 92075a70898..bddafdb386b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,7 +38,7 @@ If you require technical assistance, [Stackoverflow](https://stackoverflow.com/q ### Contributors -Thank you to all the people who have already contributed to rollup! +Thank you to all the people who have already contributed to rollup! ### Backers From de1e6eb0b5e849f835581560a7c1cd7ee82d614c Mon Sep 17 00:00:00 2001 From: takurinton Date: Mon, 12 Sep 2022 16:23:28 +0900 Subject: [PATCH 3/5] fix: 01-command-line-reference close scope --- docs/01-command-line-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-command-line-reference.md b/docs/01-command-line-reference.md index 525a360b983..76b1b7931cc 100755 --- a/docs/01-command-line-reference.md +++ b/docs/01-command-line-reference.md @@ -232,7 +232,7 @@ Alternatively you can use the `defineConfig` helper, which should provide Intell // rollup.config.js import { defineConfig } from 'rollup'; -export default defineConfig({ /* your config */ }; +export default defineConfig({ /* your config */ }); ``` Besides `RollupOptions` and the `defineConfig` helper that encapsulates this type, the following types can prove useful as well: From 9b3d11a90a27a753f6147d673c9509fecd55c91c Mon Sep 17 00:00:00 2001 From: Lukas Taegert-Atkinson Date: Thu, 22 Sep 2022 06:31:52 +0200 Subject: [PATCH 4/5] Update 01-command-line-reference.md --- docs/01-command-line-reference.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/01-command-line-reference.md b/docs/01-command-line-reference.md index 76b1b7931cc..5089333bbb9 100755 --- a/docs/01-command-line-reference.md +++ b/docs/01-command-line-reference.md @@ -232,7 +232,9 @@ Alternatively you can use the `defineConfig` helper, which should provide Intell // rollup.config.js import { defineConfig } from 'rollup'; -export default defineConfig({ /* your config */ }); +export default defineConfig({ + /* your config */ + }); ``` Besides `RollupOptions` and the `defineConfig` helper that encapsulates this type, the following types can prove useful as well: From e94fe7e4f9af2f906da27bbfd968e679b6132bda Mon Sep 17 00:00:00 2001 From: Lukas Taegert-Atkinson Date: Thu, 22 Sep 2022 06:38:28 +0200 Subject: [PATCH 5/5] fix linting --- docs/01-command-line-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01-command-line-reference.md b/docs/01-command-line-reference.md index 5089333bbb9..7bf701e6dc7 100755 --- a/docs/01-command-line-reference.md +++ b/docs/01-command-line-reference.md @@ -234,7 +234,7 @@ import { defineConfig } from 'rollup'; export default defineConfig({ /* your config */ - }); +}); ``` Besides `RollupOptions` and the `defineConfig` helper that encapsulates this type, the following types can prove useful as well: