Skip to content

Commit

Permalink
Merge pull request #7 from kanamone/add-changesets
Browse files Browse the repository at this point in the history
changesetを導入
  • Loading branch information
himanoa authored Oct 30, 2023
2 parents 2ca1f2e + 5169b2c commit 43e88cf
Show file tree
Hide file tree
Showing 9 changed files with 1,038 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
5 changes: 5 additions & 0 deletions .changeset/four-rocks-exercise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kanamone/js-scrambler": patch
---

changesets を導入
5 changes: 5 additions & 0 deletions .changeset/long-beds-hang.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@kanamone/js-scrambler": patch
---

yarnv1 に依存していたものを pnpm に移行する
7 changes: 5 additions & 2 deletions .github/workflows/js-scrambler-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@ jobs:
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn run lint
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm lint
9 changes: 6 additions & 3 deletions .github/workflows/js-scrambler-publint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn run build
- run: yarn run publint
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm build
- run: pnpm publint
7 changes: 5 additions & 2 deletions .github/workflows/js-scrambler-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@ jobs:
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: yarn install --frozen-lockfile
- run: yarn run test
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm test
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
Expand Down
Loading

0 comments on commit 43e88cf

Please sign in to comment.