create-cubing-app 0.52.3 → 0.53.2
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.
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"packages": {
|
|
6
6
|
"": {
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"cubing": "^0.
|
|
8
|
+
"cubing": "^0.53.2"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"barely-a-dev-server": "^0.6.1"
|
|
@@ -464,9 +464,9 @@
|
|
|
464
464
|
"integrity": "sha512-+1dlx0aY5Jo1vHy/tSsIGpSkN4tS9rZSW8FIhG0JH/crs9wwweswIo/POr451r7bZww3hFbPAKnTpimzL/mm4Q=="
|
|
465
465
|
},
|
|
466
466
|
"node_modules/cubing": {
|
|
467
|
-
"version": "0.
|
|
468
|
-
"resolved": "https://registry.npmjs.org/cubing/-/cubing-0.
|
|
469
|
-
"integrity": "sha512-
|
|
467
|
+
"version": "0.53.2",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/cubing/-/cubing-0.53.2.tgz",
|
|
469
|
+
"integrity": "sha512-OfnjPVTDOpubc71TweYx8cSegDnGmbEFRtffnlv1WSgkccSH2GSvrIBkWzZB8OVujis0SW7jz/plr4LL7v/q+Q==",
|
|
470
470
|
"license": "MPL-2.0 OR GPL-3.0-or-later",
|
|
471
471
|
"dependencies": {
|
|
472
472
|
"@types/three": "^0.169.0",
|
package/package.json
CHANGED
package/script/auto-publish.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { exit } from "node:process";
|
|
2
2
|
import { $, fileURLToPath } from "bun";
|
|
3
3
|
|
|
4
|
-
if ((await $`git status --porcelain`).stdout.toString().trim()) {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}
|
|
4
|
+
// if ((await $`git status --porcelain`).stdout.toString().trim()) {
|
|
5
|
+
// console.error("git status must be clean.");
|
|
6
|
+
// exit(1);
|
|
7
|
+
// }
|
|
8
8
|
|
|
9
9
|
const version = (await $`npm show cubing version`).stdout.toString().trim();
|
|
10
10
|
|
|
11
|
-
await $`npm install --prefix ${fileURLToPath(new URL(import.meta.resolve("../app-template/")))} "cubing@v${version}"`;
|
|
12
|
-
await $`npm version --no-git-tag-version "v${version}"`;
|
|
13
|
-
await $`git commit --all --message "v${version}"`;
|
|
11
|
+
// await $`npm install --prefix ${fileURLToPath(new URL(import.meta.resolve("../app-template/")))} "cubing@v${version}"`;
|
|
12
|
+
// await $`npm version --no-git-tag-version "v${version}"`;
|
|
13
|
+
// await $`git commit --all --message "v${version}"`;
|
|
14
14
|
await $`git push`;
|
|
15
|
-
await $`git tag "v${version}"`;
|
|
15
|
+
// await $`git tag "v${version}"`;
|
|
16
16
|
await $`git push origin "v${version}"`;
|
|
17
17
|
await $`npm publish`;
|