Skip to content

Commit b18a1f8

Browse files
committed
Add clean script + made form package scoped + bump version
1 parent 8926c66 commit b18a1f8

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

apps/class-solid/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"name": "class-solid",
33
"private": true,
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vinxi dev",
88
"build": "vinxi build",
99
"typecheck": "tsc --noEmit",
1010
"start": "serve --no-clipboard .output/public",
11-
"test": "playwright test"
11+
"test": "playwright test",
12+
"clean": "rm -rf .output"
1213
},
1314
"dependencies": {
1415
"@classmodel/class": "workspace:*",

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"private": true,
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"scripts": {
55
"build": "turbo build",
66
"dev": "turbo dev",
77
"format-and-lint": "biome check .",
88
"format-and-lint:fix": "biome check . --write",
99
"typecheck": "turbo typecheck",
10-
"test": "turbo test"
10+
"test": "turbo test",
11+
"clean": "turbo clean"
1112
},
1213
"devDependencies": {
1314
"@biomejs/biome": "1.8.3",

packages/class/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@classmodel/class",
33
"description": "Chemistry Land-surface Atmosphere Soil Slab (CLASS) model",
44
"type": "module",
5-
"version": "0.1.1",
5+
"version": "0.1.2",
66
"exports": {
77
"./package.json": "./package.json",
88
"./class": {
@@ -75,7 +75,8 @@
7575
"test": "tsx --test src/*.test.ts",
7676
"typecheck": "tsc --noEmit",
7777
"json2ts": "node scripts/json2ts.mjs",
78-
"docs": "typedoc"
78+
"docs": "typedoc",
79+
"clean": "rm -rf dist"
7980
},
8081
"bin": "./dist/cli.js",
8182
"devDependencies": {

packages/form/package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@classmodel/form",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Generate form from JSON schema with Solid UI components",
55
"type": "module",
66
"repository": {
@@ -18,7 +18,8 @@
1818
"example:preview": "BUILD_APP=1 vite preview",
1919
"typecheck": "tsc",
2020
"test": "tsx --test 'src/**/*.test.ts'",
21-
"build": "vite build"
21+
"build": "vite build",
22+
"clean": "rm -rf dist example-dist"
2223
},
2324
"license": "Apache-2.0",
2425
"devDependencies": {
@@ -72,5 +73,9 @@
7273
"engines": {
7374
"node": ">=22",
7475
"pnpm": ">=9"
76+
},
77+
"private": false,
78+
"publishConfig": {
79+
"access": "public"
7580
}
7681
}

turbo.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
},
1919
"typecheck": {
2020
"dependsOn": ["^build"]
21+
},
22+
"clean": {
23+
"cache": false
2124
}
2225
}
2326
}

0 commit comments

Comments
 (0)