Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Karrys <luke@lukekarrys.com>2022-09-22 07:57:21 +0300
committerGitHub <noreply@github.com>2022-09-22 07:57:21 +0300
commit83fd0a8cde591c03c5b0888e34cb71e3e1e29e66 (patch)
tree982ab9e4827583361d8be0e8c7a8a0a0386d90cd
parent07922e9362170ac804b4bca978bc5d2b1ea7b6d0 (diff)
chore: @npmcli/template-oss@4.4.1 (#5559)
-rw-r--r--.github/workflows/audit.yml2
-rw-r--r--.github/workflows/ci-docs.yml30
-rw-r--r--.github/workflows/ci-libnpmaccess.yml33
-rw-r--r--.github/workflows/ci-libnpmdiff.yml33
-rw-r--r--.github/workflows/ci-libnpmexec.yml33
-rw-r--r--.github/workflows/ci-libnpmfund.yml33
-rw-r--r--.github/workflows/ci-libnpmhook.yml33
-rw-r--r--.github/workflows/ci-libnpmorg.yml33
-rw-r--r--.github/workflows/ci-libnpmpack.yml33
-rw-r--r--.github/workflows/ci-libnpmpublish.yml33
-rw-r--r--.github/workflows/ci-libnpmsearch.yml33
-rw-r--r--.github/workflows/ci-libnpmteam.yml33
-rw-r--r--.github/workflows/ci-libnpmversion.yml33
-rw-r--r--.github/workflows/ci-npmcli-arborist.yml33
-rw-r--r--.github/workflows/ci-smoke-tests.yml33
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/post-dependabot.yml35
-rw-r--r--docs/package.json4
-rw-r--r--package-lock.json36
-rw-r--r--package.json6
-rwxr-xr-xscripts/resetdeps.sh2
-rw-r--r--scripts/template-oss/_step-deps.yml2
-rw-r--r--smoke-tests/package.json4
-rw-r--r--workspaces/arborist/package.json4
-rw-r--r--workspaces/libnpmaccess/package.json4
-rw-r--r--workspaces/libnpmdiff/package.json4
-rw-r--r--workspaces/libnpmexec/package.json4
-rw-r--r--workspaces/libnpmfund/package.json4
-rw-r--r--workspaces/libnpmhook/package.json4
-rw-r--r--workspaces/libnpmorg/package.json4
-rw-r--r--workspaces/libnpmpack/package.json4
-rw-r--r--workspaces/libnpmpublish/package.json4
-rw-r--r--workspaces/libnpmsearch/package.json4
-rw-r--r--workspaces/libnpmteam/package.json4
-rw-r--r--workspaces/libnpmversion/package.json4
35 files changed, 548 insertions, 56 deletions
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
index 1eca24a40..281331a54 100644
--- a/.github/workflows/audit.yml
+++ b/.github/workflows/audit.yml
@@ -29,6 +29,6 @@ jobs:
node-version: 18.x
cache: npm
- name: Reset Deps
- run: node . run resetdeps
+ run: node . run resetdeps -- --package-lock
- name: Run Audit
run: node . audit
diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml
index ac92fead9..de6120777 100644
--- a/.github/workflows/ci-docs.yml
+++ b/.github/workflows/ci-docs.yml
@@ -18,6 +18,36 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmaccess.yml b/.github/workflows/ci-libnpmaccess.yml
index 4b30b54b1..14184d834 100644
--- a/.github/workflows/ci-libnpmaccess.yml
+++ b/.github/workflows/ci-libnpmaccess.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmdiff.yml b/.github/workflows/ci-libnpmdiff.yml
index f1a8fd846..b6aced374 100644
--- a/.github/workflows/ci-libnpmdiff.yml
+++ b/.github/workflows/ci-libnpmdiff.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmexec.yml b/.github/workflows/ci-libnpmexec.yml
index eccbd943d..ac48176a8 100644
--- a/.github/workflows/ci-libnpmexec.yml
+++ b/.github/workflows/ci-libnpmexec.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmfund.yml b/.github/workflows/ci-libnpmfund.yml
index acd8a5e00..1a626c107 100644
--- a/.github/workflows/ci-libnpmfund.yml
+++ b/.github/workflows/ci-libnpmfund.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmhook.yml b/.github/workflows/ci-libnpmhook.yml
index e2f6eb8c2..a7cd58450 100644
--- a/.github/workflows/ci-libnpmhook.yml
+++ b/.github/workflows/ci-libnpmhook.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmorg.yml b/.github/workflows/ci-libnpmorg.yml
index 05ab19a41..7a1b556ae 100644
--- a/.github/workflows/ci-libnpmorg.yml
+++ b/.github/workflows/ci-libnpmorg.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmpack.yml b/.github/workflows/ci-libnpmpack.yml
index 12a17c594..1718b28c2 100644
--- a/.github/workflows/ci-libnpmpack.yml
+++ b/.github/workflows/ci-libnpmpack.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmpublish.yml b/.github/workflows/ci-libnpmpublish.yml
index ad28f216d..73036ee7a 100644
--- a/.github/workflows/ci-libnpmpublish.yml
+++ b/.github/workflows/ci-libnpmpublish.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmsearch.yml b/.github/workflows/ci-libnpmsearch.yml
index 51243c33b..7f2f9d01d 100644
--- a/.github/workflows/ci-libnpmsearch.yml
+++ b/.github/workflows/ci-libnpmsearch.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmteam.yml b/.github/workflows/ci-libnpmteam.yml
index d69e4bdb1..b318301db 100644
--- a/.github/workflows/ci-libnpmteam.yml
+++ b/.github/workflows/ci-libnpmteam.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-libnpmversion.yml b/.github/workflows/ci-libnpmversion.yml
index 23ec19dd1..ce01e5fca 100644
--- a/.github/workflows/ci-libnpmversion.yml
+++ b/.github/workflows/ci-libnpmversion.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-npmcli-arborist.yml b/.github/workflows/ci-npmcli-arborist.yml
index 07caf1ec6..9ee54d5ed 100644
--- a/.github/workflows/ci-npmcli-arborist.yml
+++ b/.github/workflows/ci-npmcli-arborist.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci-smoke-tests.yml b/.github/workflows/ci-smoke-tests.yml
index 29033c6c4..a075d0cb8 100644
--- a/.github/workflows/ci-smoke-tests.yml
+++ b/.github/workflows/ci-smoke-tests.yml
@@ -18,6 +18,39 @@ on:
- cron: "0 9 * * 1"
jobs:
+ engines:
+ name: Engines - ${{ matrix.platform.name }} - ${{ matrix.node-version }}
+ if: github.repository_owner == 'npm'
+ strategy:
+ fail-fast: false
+ matrix:
+ platform:
+ - name: Linux
+ os: ubuntu-latest
+ shell: bash
+ node-version:
+ - 14.17.0
+ - 16.13.0
+ - 18.0.0
+ runs-on: ${{ matrix.platform.os }}
+ defaults:
+ run:
+ shell: ${{ matrix.platform.shell }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Setup Git User
+ run: |
+ git config --global user.email "npm-cli+bot@github.com"
+ git config --global user.name "npm CLI robot"
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: npm
+ - name: Reset Deps
+ run: node . run resetdeps -- --engines-strict
+
lint:
name: Lint
if: github.repository_owner == 'npm'
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c13550bd1..bfbec9a2f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,11 +6,17 @@ on:
workflow_dispatch:
pull_request:
paths-ignore:
+ - docs/**
+ - smoke-tests/**
+ - workspaces/**
push:
branches:
- main
- latest
paths-ignore:
+ - docs/**
+ - smoke-tests/**
+ - workspaces/**
schedule:
# "At 09:00 UTC (02:00 PT) on Monday" https://crontab.guru/#0_9_*_*_1
- cron: "0 9 * * 1"
diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml
index 1302c7a80..f488974da 100644
--- a/.github/workflows/post-dependabot.yml
+++ b/.github/workflows/post-dependabot.yml
@@ -57,6 +57,15 @@ jobs:
if [[ `git status --porcelain` ]]; then
echo "::set-output name=changes::true"
fi
+ # This only sets the conventional commit prefix. This workflow can't reliably determine
+ # what the breaking change is though. If a BREAKING CHANGE message is required then
+ # this PR check will fail and the commit will be amended with stafftools
+ if [[ "${{ steps.dependabot-metadata.outputs.update-type }}" == "version-update:semver-major" ]]; then
+ prefix='feat!'
+ else
+ prefix='chore!'
+ fi
+ echo "::set-output name=message::$prefix: postinstall for dependabot template-oss PR"
# This step will fail if template-oss has made any workflow updates. It is impossible
# for a workflow to update other workflows. In the case it does fail, we continue
@@ -68,21 +77,39 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
- git commit -am "chore: postinstall for dependabot template-oss PR"
+ git commit -am "${{ steps.apply.outputs.message }}"
git push
- - name: Push All Changes Except Workflows
- if: steps.push.outcome == 'failure'
+ # If the previous step failed, then reset the commit and remove any workflow changes
+ # and attempt to commit and push again. This is helpful because we will have a commit
+ # with the correct prefix that we can then --amend with @npmcli/stafftools later.
+ - name: Commit and push all changes except workflows
+ if: steps.apply.outputs.changes && steps.push-all.outcome == 'failure'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git reset HEAD~
git checkout HEAD -- .github/workflows/
git clean -fd .github/workflows/
- git commit -am "chore: postinstall for dependabot template-oss PR"
+ git commit -am "${{ steps.apply.outputs.message }}"
git push
+ # Check if all the necessary template-oss changes were applied. Since we continued
+ # on errors in one of the previous steps, this check will fail if our follow up
+ # only applied a portion of the changes and we need to followup manually.
+ #
+ # Note that this used to run `lint` and `postlint` but that will fail this action
+ # if we've also shipped any linting changes separate from template-oss. We do
+ # linting in another action, so we want to fail this one only if there are
+ # template-oss changes that could not be applied.
- name: Check Changes
if: steps.apply.outputs.changes
run: |
node . exec --offline ${{ steps.flags.outputs.workspace }} -- template-oss-check
+
+ - name: Fail on Breaking Change
+ if: steps.apply.outputs.changes && startsWith(steps.apply.outputs.message, 'feat!')
+ run: |
+ echo "This PR has a breaking change. Run 'npx -p @npmcli/stafftools gh template-oss-fix'"
+ echo "for more information on how to fix this with a BREAKING CHANGE footer."
+ exit 1
diff --git a/docs/package.json b/docs/package.json
index 1ea9f668d..adcf96d57 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -22,7 +22,7 @@
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/fs": "^2.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"cmark-gfm": "^0.9.0",
"jsdom": "^18.1.0",
"marked-man": "^0.7.0",
@@ -64,7 +64,7 @@
],
"ciVersions": "latest",
"engines": "^14.17.0 || ^16.13.0 || >=18.0.0",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../scripts/template-oss/index.js"
}
}
diff --git a/package-lock.json b/package-lock.json
index 36a2761bc..3ae425d6d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -169,7 +169,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"@octokit/rest": "^19.0.4",
"fs-minipass": "^2.1.0",
"licensee": "^8.2.0",
@@ -190,7 +190,7 @@
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/fs": "^2.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"cmark-gfm": "^0.9.0",
"jsdom": "^18.1.0",
"marked-man": "^0.7.0",
@@ -2363,9 +2363,9 @@
}
},
"node_modules/@npmcli/template-oss": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/@npmcli/template-oss/-/template-oss-4.3.2.tgz",
- "integrity": "sha512-4sVkA9hvoRlGDxZ+UtiE5YEvJWAFUiY3tzi2N8zAxsgf1qS0HkrVBqRJikBRzleUBjmYLrxAI1qqY8Lz/ubupg==",
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/@npmcli/template-oss/-/template-oss-4.4.1.tgz",
+ "integrity": "sha512-HWzfbkCJD2R7LT5gZy6yZJDf+TX+B3j4HkwJ04MWI//QFsKSGiWon37B8vhF84SdCVpRgrCRX9VQmBf2sooePg==",
"dev": true,
"hasInstallScript": true,
"dependencies": {
@@ -13852,7 +13852,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"minify-registry-metadata": "^2.2.0",
"rimraf": "^3.0.2",
"tap": "^16.0.1",
@@ -13909,7 +13909,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"benchmark": "^2.1.4",
"chalk": "^4.1.0",
"minify-registry-metadata": "^2.1.0",
@@ -13930,7 +13930,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -13953,7 +13953,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"tap": "^16.0.1"
},
"engines": {
@@ -13981,7 +13981,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"bin-links": "^3.0.3",
"minify-registry-metadata": "^2.2.0",
"mkdirp": "^1.0.4",
@@ -13999,7 +13999,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"tap": "^16.0.1"
},
"engines": {
@@ -14015,7 +14015,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -14032,7 +14032,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"minipass": "^3.1.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
@@ -14051,7 +14051,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.0.7",
"tap": "^16.0.1"
},
@@ -14071,7 +14071,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"libnpmpack": "^5.0.0-pre.0",
"lodash.clonedeep": "^4.5.0",
"nock": "^13.2.4",
@@ -14089,7 +14089,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -14106,7 +14106,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -14126,7 +14126,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"require-inject": "^1.4.4",
"tap": "^16.0.1"
},
diff --git a/package.json b/package.json
index a9e872d72..a78713a13 100644
--- a/package.json
+++ b/package.json
@@ -206,7 +206,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"@octokit/rest": "^19.0.4",
"fs-minipass": "^2.1.0",
"licensee": "^8.2.0",
@@ -254,11 +254,11 @@
"--exclude",
"tap-snapshots/**"
],
- "test-ignore": "^(docs|smoke-tests|workspaces)/**"
+ "test-ignore": "^(docs|smoke-tests|workspaces)/"
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "./scripts/template-oss/root.js"
},
"license": "Artistic-2.0",
diff --git a/scripts/resetdeps.sh b/scripts/resetdeps.sh
index d73ce8458..758edef64 100755
--- a/scripts/resetdeps.sh
+++ b/scripts/resetdeps.sh
@@ -6,6 +6,6 @@ rm -rf docs/node_modules
rm -rf smoke-tests/node_modules
rm -rf "workspaces/*/node_modules"
git checkout node_modules
-node . i --ignore-scripts --no-audit --no-fund
+node . i --ignore-scripts --no-audit --no-fund "$@"
node . rebuild --ignore-scripts
node . run dependencies --ignore-scripts
diff --git a/scripts/template-oss/_step-deps.yml b/scripts/template-oss/_step-deps.yml
index 2f77eabdc..22f8d00c7 100644
--- a/scripts/template-oss/_step-deps.yml
+++ b/scripts/template-oss/_step-deps.yml
@@ -1,2 +1,2 @@
- name: Reset Deps
- run: {{rootNpmPath}} run resetdeps
+ run: {{rootNpmPath}} run resetdeps {{~#if jobDepFlags}} -- {{ jobDepFlags }}{{/if}}
diff --git a/smoke-tests/package.json b/smoke-tests/package.json
index 829d81952..972625858 100644
--- a/smoke-tests/package.json
+++ b/smoke-tests/package.json
@@ -20,7 +20,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
"@npmcli/promise-spawn": "^3.0.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"minify-registry-metadata": "^2.2.0",
"rimraf": "^3.0.2",
"tap": "^16.0.1",
@@ -30,7 +30,7 @@
"license": "ISC",
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/arborist/package.json b/workspaces/arborist/package.json
index 58a156da8..a93a171bb 100644
--- a/workspaces/arborist/package.json
+++ b/workspaces/arborist/package.json
@@ -42,7 +42,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"benchmark": "^2.1.4",
"chalk": "^4.1.0",
"minify-registry-metadata": "^2.1.0",
@@ -104,7 +104,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
}
}
diff --git a/workspaces/libnpmaccess/package.json b/workspaces/libnpmaccess/package.json
index 90370d67d..dcf7e09f3 100644
--- a/workspaces/libnpmaccess/package.json
+++ b/workspaces/libnpmaccess/package.json
@@ -16,7 +16,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -40,7 +40,7 @@
],
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmdiff/package.json b/workspaces/libnpmdiff/package.json
index cdc919106..6b3e12e4f 100644
--- a/workspaces/libnpmdiff/package.json
+++ b/workspaces/libnpmdiff/package.json
@@ -43,7 +43,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"tap": "^16.0.1"
},
"dependencies": {
@@ -58,7 +58,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmexec/package.json b/workspaces/libnpmexec/package.json
index 3c91e89dc..54b02e44d 100644
--- a/workspaces/libnpmexec/package.json
+++ b/workspaces/libnpmexec/package.json
@@ -51,7 +51,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"bin-links": "^3.0.3",
"minify-registry-metadata": "^2.2.0",
"mkdirp": "^1.0.4",
@@ -75,7 +75,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
}
}
diff --git a/workspaces/libnpmfund/package.json b/workspaces/libnpmfund/package.json
index f6c240615..fe4d1b98a 100644
--- a/workspaces/libnpmfund/package.json
+++ b/workspaces/libnpmfund/package.json
@@ -42,7 +42,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"tap": "^16.0.1"
},
"dependencies": {
@@ -53,7 +53,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmhook/package.json b/workspaces/libnpmhook/package.json
index ee4b535ea..63382d3e3 100644
--- a/workspaces/libnpmhook/package.json
+++ b/workspaces/libnpmhook/package.json
@@ -37,7 +37,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -46,7 +46,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmorg/package.json b/workspaces/libnpmorg/package.json
index 23f3a5c84..0e6db28ee 100644
--- a/workspaces/libnpmorg/package.json
+++ b/workspaces/libnpmorg/package.json
@@ -28,7 +28,7 @@
],
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"minipass": "^3.1.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
@@ -49,7 +49,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmpack/package.json b/workspaces/libnpmpack/package.json
index a41236feb..96c9589a8 100644
--- a/workspaces/libnpmpack/package.json
+++ b/workspaces/libnpmpack/package.json
@@ -23,7 +23,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.0.7",
"tap": "^16.0.1"
},
@@ -44,7 +44,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmpublish/package.json b/workspaces/libnpmpublish/package.json
index cfccf0131..ea2fdc181 100644
--- a/workspaces/libnpmpublish/package.json
+++ b/workspaces/libnpmpublish/package.json
@@ -25,7 +25,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"libnpmpack": "^5.0.0-pre.0",
"lodash.clonedeep": "^4.5.0",
"nock": "^13.2.4",
@@ -50,7 +50,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmsearch/package.json b/workspaces/libnpmsearch/package.json
index 2a8b7a0ef..cb670ca35 100644
--- a/workspaces/libnpmsearch/package.json
+++ b/workspaces/libnpmsearch/package.json
@@ -26,7 +26,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -45,7 +45,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmteam/package.json b/workspaces/libnpmteam/package.json
index ea859f490..85849a75a 100644
--- a/workspaces/libnpmteam/package.json
+++ b/workspaces/libnpmteam/package.json
@@ -16,7 +16,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"nock": "^13.2.4",
"tap": "^16.0.1"
},
@@ -39,7 +39,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
},
"tap": {
diff --git a/workspaces/libnpmversion/package.json b/workspaces/libnpmversion/package.json
index 83aaf8ab8..c01e7f695 100644
--- a/workspaces/libnpmversion/package.json
+++ b/workspaces/libnpmversion/package.json
@@ -32,7 +32,7 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^3.1.0",
- "@npmcli/template-oss": "4.3.2",
+ "@npmcli/template-oss": "4.4.1",
"require-inject": "^1.4.4",
"tap": "^16.0.1"
},
@@ -48,7 +48,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
- "version": "4.3.2",
+ "version": "4.4.1",
"content": "../../scripts/template-oss/index.js"
}
}