@comet/cms-admin 8.5.1-canary-20251023060846 → 8.5.1-canary-20251023061208
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/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comet/cms-admin",
|
|
3
|
-
"version": "8.5.1-canary-
|
|
3
|
+
"version": "8.5.1-canary-20251023061208",
|
|
4
4
|
"description": "Comet CMS Admin package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/admin/cms-admin",
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
"slugify": "^1.6.6",
|
|
42
42
|
"use-debounce": "^10.0.5",
|
|
43
43
|
"uuid": "^11.1.0",
|
|
44
|
-
"@comet/admin": "8.5.1-canary-
|
|
45
|
-
"@comet/admin-date-time": "8.5.1-canary-
|
|
46
|
-
"@comet/admin-icons": "8.5.1-canary-
|
|
47
|
-
"@comet/admin-rte": "8.5.1-canary-
|
|
44
|
+
"@comet/admin": "8.5.1-canary-20251023061208",
|
|
45
|
+
"@comet/admin-date-time": "8.5.1-canary-20251023061208",
|
|
46
|
+
"@comet/admin-icons": "8.5.1-canary-20251023061208",
|
|
47
|
+
"@comet/admin-rte": "8.5.1-canary-20251023061208"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@apollo/client": "^3.13.8",
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
"react-router-dom": "^5.3.4",
|
|
99
99
|
"ts-jest": "^29.4.0",
|
|
100
100
|
"typescript": "5.8.3",
|
|
101
|
-
"@comet/admin-babel-preset": "8.5.1-canary-
|
|
102
|
-
"@comet/cli": "8.5.1-canary-
|
|
103
|
-
"@comet/eslint-config": "8.5.1-canary-
|
|
101
|
+
"@comet/admin-babel-preset": "8.5.1-canary-20251023061208",
|
|
102
|
+
"@comet/cli": "8.5.1-canary-20251023061208",
|
|
103
|
+
"@comet/eslint-config": "8.5.1-canary-20251023061208"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"@apollo/client": "^3.7.0",
|
|
@@ -127,20 +127,20 @@
|
|
|
127
127
|
"registry": "https://registry.npmjs.org"
|
|
128
128
|
},
|
|
129
129
|
"scripts": {
|
|
130
|
-
"build": "
|
|
131
|
-
"build:babel": "
|
|
130
|
+
"build": "pnpm run clean && run-p gql:types generate-block-types && run-p build:babel build:types",
|
|
131
|
+
"build:babel": "pnpm exec babel ./src -x \".ts,.tsx\" -d lib",
|
|
132
132
|
"build:types": "tsc --project ./tsconfig.build.json --emitDeclarationOnly",
|
|
133
133
|
"clean": "rimraf lib 'src/**/*.generated.ts'",
|
|
134
134
|
"generate-block-types": "comet generate-block-types --inputs",
|
|
135
|
-
"generate-block-types:watch": "chokidar -s \"block-meta.json\" -c \"
|
|
135
|
+
"generate-block-types:watch": "chokidar -s \"block-meta.json\" -c \"pnpm generate-block-types\"",
|
|
136
136
|
"gql:types": "graphql-codegen",
|
|
137
|
-
"gql:watch": "
|
|
137
|
+
"gql:watch": "pnpm graphql-codegen --watch",
|
|
138
138
|
"lint": "run-p gql:types generate-block-types && run-p lint:prettier lint:eslint lint:tsc",
|
|
139
139
|
"lint:eslint": "eslint --max-warnings 0 src/ **/*.json --no-warn-ignored",
|
|
140
|
-
"lint:prettier": "
|
|
140
|
+
"lint:prettier": "pnpm exec prettier --check './**/*.{js,json,md,yml,yaml}'",
|
|
141
141
|
"lint:tsc": "tsc --noEmit",
|
|
142
142
|
"start": "run-p gql:types generate-block-types && run-p start:babel start:types",
|
|
143
|
-
"start:babel": "
|
|
143
|
+
"start:babel": "pnpm exec babel ./src -x \".ts,.tsx\" -d lib -w",
|
|
144
144
|
"start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput",
|
|
145
145
|
"test": "jest --verbose=true",
|
|
146
146
|
"test:watch": "jest --watch"
|