@comet/admin-icons 9.0.0-canary-20251013121422 → 9.0.0-canary-20251113142723
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/admin-icons",
|
|
3
|
-
"version": "9.0.0-canary-
|
|
3
|
+
"version": "9.0.0-canary-20251113142723",
|
|
4
4
|
"description": "A collection of icons for Comet Admin",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/admin/admin-icons",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@babel/core": "^7.28.0",
|
|
20
20
|
"@mui/material": "^7.2.0",
|
|
21
21
|
"@types/cli-progress": "^3.11.6",
|
|
22
|
-
"@types/node": "^
|
|
22
|
+
"@types/node": "^24.9.1",
|
|
23
23
|
"@types/react": "^18.3.23",
|
|
24
24
|
"@types/react-dom": "^18.3.7",
|
|
25
25
|
"change-case": "^4.1.2",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"rimraf": "^6.0.1",
|
|
34
34
|
"ts-node": "^10.9.2",
|
|
35
35
|
"typescript": "5.8.3",
|
|
36
|
-
"@comet/admin-babel-preset": "9.0.0-canary-
|
|
37
|
-
"@comet/eslint-config": "9.0.0-canary-
|
|
36
|
+
"@comet/admin-babel-preset": "9.0.0-canary-20251113142723",
|
|
37
|
+
"@comet/eslint-config": "9.0.0-canary-20251113142723"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@mui/material": "^7.0.0",
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "run-s clean generate-icons && run-p build:babel build:types && eslint --fix src/generated/",
|
|
53
|
-
"build:babel": "
|
|
53
|
+
"build:babel": "pnpm exec babel ./src -x \".ts,.tsx\" -d lib",
|
|
54
54
|
"build:types": "tsc --project ./tsconfig.json --emitDeclarationOnly",
|
|
55
55
|
"clean": "rimraf lib",
|
|
56
56
|
"generate-icons": "ts-node generate-icons.ts",
|
|
57
57
|
"lint": "run-p lint:prettier lint:eslint lint:tsc",
|
|
58
58
|
"lint:eslint": "eslint --max-warnings 0 src/ **/*.json --no-warn-ignored",
|
|
59
|
-
"lint:prettier": "
|
|
59
|
+
"lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'",
|
|
60
60
|
"lint:tsc": "tsc --noEmit",
|
|
61
|
-
"start": "
|
|
62
|
-
"start:babel": "
|
|
61
|
+
"start": "pnpm run generate-icons && run-p start:babel start:types",
|
|
62
|
+
"start:babel": "pnpm exec babel ./src -x \".ts,.tsx\" -d lib -w",
|
|
63
63
|
"start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput"
|
|
64
64
|
}
|
|
65
65
|
}
|