Skip to content

Commit 118fc4a

Browse files
committed
Merge main (v0.9.6) into develop
2 parents 3183e12 + bde97df commit 118fc4a

6 files changed

Lines changed: 37 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ jobs:
2222
node-version: ${{ matrix.node-version }}
2323
cache: 'npm'
2424

25-
- name: Install dependencies
26-
run: npm install
25+
- name: Clean and install dependencies
26+
run: |
27+
rm -rf node_modules frontend/node_modules server/node_modules
28+
rm -f package-lock.json frontend/package-lock.json server/package-lock.json
29+
npm install
2730
2831
- name: Build
2932
run: npm run build

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ jobs:
1818
node-version: '20'
1919
registry-url: 'https://registry.npmjs.org'
2020

21-
- name: Install dependencies
22-
run: npm install
21+
- name: Clean and install dependencies
22+
run: |
23+
rm -rf node_modules frontend/node_modules server/node_modules
24+
rm -f package-lock.json frontend/package-lock.json server/package-lock.json
25+
npm install
2326
2427
- name: Build
2528
run: npm run build

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.9.5] - 2025-12-17
11+
12+
### Changed
13+
- Rename package from `@csvms/cli` to `csvms` for simpler installation
14+
- First public release on npm
15+
16+
## [0.9.3] - 2025-12-17
17+
18+
### Fixed
19+
- Fix test script to pass when no test files exist
20+
21+
## [0.9.2] - 2025-12-17
22+
23+
### Fixed
24+
- Fix CI workflow: clean node_modules and package-lock.json before install to resolve rollup optional dependencies issue
25+
1026
## [0.9.1] - 2025-12-17
1127

1228
### Fixed
@@ -31,7 +47,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3147
- Path traversal protection
3248
- Workspace boundary enforcement
3349

34-
[Unreleased]: https://github.com/foo-ogawa/csvms/compare/v0.9.1...HEAD
50+
[Unreleased]: https://github.com/foo-ogawa/csvms/compare/v0.9.5...HEAD
51+
[0.9.5]: https://github.com/foo-ogawa/csvms/compare/v0.9.4...v0.9.5
52+
[0.9.4]: https://github.com/foo-ogawa/csvms/compare/v0.9.3...v0.9.4
53+
[0.9.3]: https://github.com/foo-ogawa/csvms/compare/v0.9.2...v0.9.3
54+
[0.9.2]: https://github.com/foo-ogawa/csvms/compare/v0.9.1...v0.9.2
3555
[0.9.1]: https://github.com/foo-ogawa/csvms/compare/v0.9.0...v0.9.1
3656
[0.9.0]: https://github.com/foo-ogawa/csvms/releases/tag/v0.9.0
3757

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ npx csvms --schema schemas/product.schema.yaml --allow-write
4444

4545
```bash
4646
# 編集したいCSVがあるディレクトリで実行
47-
npx @csvms/cli
47+
npx csvms
4848
```
4949

5050
### ローカル開発

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@csvms/monorepo",
33
"private": true,
4-
"version": "0.9.1",
4+
"version": "0.9.6",
55
"description": "CSVMS - Edit CSV files with a CMS-like UI",
66
"author": "foo-ogawa",
77
"license": "MIT",

server/package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@csvms/cli",
3-
"version": "0.9.1",
2+
"name": "csvms",
3+
"version": "0.9.6",
44
"description": "CSVMS - Edit CSV files with a CMS-like UI",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -14,8 +14,8 @@
1414
"dev": "tsx watch src/cli.ts",
1515
"build": "tsc",
1616
"start": "node dist/cli.js",
17-
"test": "vitest",
18-
"test:run": "vitest run",
17+
"test": "vitest run --passWithNoTests",
18+
"test:watch": "vitest",
1919
"lint": "eslint src --ext .ts",
2020
"prepublishOnly": "npm run build"
2121
},
@@ -38,9 +38,6 @@
3838
"type": "git",
3939
"url": "git+https://github.com/foo-ogawa/csvms.git"
4040
},
41-
"publishConfig": {
42-
"access": "public"
43-
},
4441
"dependencies": {
4542
"commander": "^12.1.0",
4643
"express": "^4.21.0",

0 commit comments

Comments
 (0)