This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrate to pnpm and buildkite-changsets
- Loading branch information
Showing
12 changed files
with
7,660 additions
and
8,162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
# Configured by Renovate | ||
package.json | ||
yarn.lock | ||
pnpm.lock.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Snapshot | ||
|
||
on: workflow_dispatch | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
publish: | ||
name: Publish Snapshot | ||
permissions: | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Set up pnpm | ||
run: corepack enable pnpm | ||
|
||
- name: Install dependencies | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Setup jq | ||
uses: dcarbone/[email protected] | ||
|
||
- name: Publish to npm | ||
uses: seek-oss/changesets-snapshot@v0 | ||
with: | ||
pre-version: ./scripts/snapshot-pre-version.sh | ||
pre-publish: ./scripts/snapshot-pre-publish.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.SEEK_OSS_CI_NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# managed by skuba | ||
public-hoist-pattern[]="@types*" | ||
public-hoist-pattern[]="*eslint*" | ||
public-hoist-pattern[]="*prettier*" | ||
public-hoist-pattern[]="esbuild" | ||
public-hoist-pattern[]="jest" | ||
public-hoist-pattern[]="tsconfig-seek" | ||
# end managed by skuba |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,8 @@ | |
"eslint-plugin-yml": "^1.5.0" | ||
}, | ||
"devDependencies": { | ||
"@changesets/cli": "2.27.1", | ||
"@changesets/get-github-info": "0.6.0", | ||
"eslint": "8.56.0", | ||
"skuba": "7.5.1", | ||
"typescript": "5.3.3" | ||
|
@@ -43,6 +45,7 @@ | |
"eslint": ">= 7.2", | ||
"typescript": ">= 3.9" | ||
}, | ||
"packageManager": "[email protected]", | ||
"skuba": { | ||
"entryPoint": "index.js", | ||
"template": "oss-npm-package", | ||
|
Oops, something went wrong.