Skip to content

Commit

Permalink
Merge pull request #401 from caddijp/release
Browse files Browse the repository at this point in the history
Bump v0.4.0
  • Loading branch information
9renpoto committed Mar 10, 2022
2 parents 6e63f74 + 2006ed1 commit dbd7bbb
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 19 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: '16.x'
- run: npm ci
- run: npm test

Expand All @@ -23,11 +23,18 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: '16.x'
registry-url: https://npm.pkg.github.com/
scope: '@caddijp'
- run: npm ci
- name: publish
run: |
npm run release
- run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: https://npm.pkg.github.com/
scope: '@caddijp'
- run: npm run release
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.4.0 (2022-03-10)

#### :rocket: Type: Feature

- `components`, `eslint-config`, `stylelint-config`, `tsconfig`
- [#386](https://github.com/caddijp/frontend/pull/386) chore: upgrade dependencies ([@9renpoto](https://github.com/9renpoto))

#### Committers: 1

- Keisuke Kan ([@9renpoto](https://github.com/9renpoto))

## v0.3.0 (2021-08-17)

#### :rocket: Type: Feature
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"packages": ["packages/*"],
"npmClient": "npm",
"useWorkspaces": true,
"version": "0.3.0"
"version": "0.4.0"
}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"name": "@caddijp/frontend",
"private": true,
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"cache": "~/.npm"
},
"license": "MIT",
"repository": "ssh://git@github.com/caddijp/frontend.git",
"author": "CADDi Co.,Ltd",
Expand All @@ -23,7 +19,7 @@
"lint:style": "stylelint '**/*.ts{,x}'",
"prepare": "husky install",
"prepublishOnly": "npm run lint",
"release": "lerna exec --no-bail -- 'can-npm-publish && npm publish --registry=\"https://npm.pkg.github.com/caddijp\"'",
"release": "lerna exec --no-bail -- 'can-npm-publish && npm publish",
"start-storybook": "npm run --prefix packages/components start-storybook",
"test": "lerna run test --parallel"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caddijp/components",
"version": "0.3.0",
"version": "0.4.0",
"description": "CADDi ui components built with React.",
"license": "MIT",
"repository": "git@github.com:caddijp/frontend.git",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caddijp/eslint-config",
"version": "0.3.0",
"version": "0.4.0",
"license": "MIT",
"repository": "git@github.com:caddijp/frontend.git",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/stylelint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caddijp/stylelint-config",
"version": "0.3.0",
"version": "0.4.0",
"license": "MIT",
"repository": "git@github.com:caddijp/frontend.git",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@caddijp/tsconfig",
"version": "0.3.0",
"version": "0.4.0",
"description": "Shared TypeScript config for CADDi projects",
"license": "MIT",
"repository": "git@github.com:caddijp/frontend.git",
Expand Down

0 comments on commit dbd7bbb

Please sign in to comment.