@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # @comet/admin-icons
2
2
 
3
- ## 9.0.0-canary-20251013121422
3
+ ## 9.0.0-canary-20251113142723
4
+
5
+ ## 8.6.0
6
+
7
+ ## 8.5.2
8
+
9
+ ## 8.5.1
10
+
11
+ ## 8.5.0
12
+
13
+ ## 8.4.2
14
+
15
+ ## 8.4.1
16
+
17
+ ## 8.4.0
4
18
 
5
19
  ## 8.3.0
6
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comet/admin-icons",
3
- "version": "9.0.0-canary-20251013121422",
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.16.3",
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-20251013121422",
37
- "@comet/eslint-config": "9.0.0-canary-20251013121422"
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": "npx babel ./src -x \".ts,.tsx\" -d lib",
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": "npx prettier --check './**/*.{js,json,md,yml,yaml}'",
59
+ "lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'",
60
60
  "lint:tsc": "tsc --noEmit",
61
- "start": "$npm_execpath run generate-icons && run-p start:babel start:types",
62
- "start:babel": "npx babel ./src -x \".ts,.tsx\" -d lib -w",
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
  }