@stacksjs/actions 0.70.119 → 0.70.121
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/dist/bump.js +5 -0
- package/package.json +17 -17
package/dist/bump.js
CHANGED
|
@@ -126,6 +126,11 @@ async function writeChangelog() {
|
|
|
126
126
|
await writeChangelog();
|
|
127
127
|
if (!isDryRun && isFrameworkRelease)
|
|
128
128
|
pinMetaCoreDeps(nextVersion);
|
|
129
|
+
if (!isDryRun && existsSync(p.projectPath("bun.lock")))
|
|
130
|
+
await execSync(["bun", "install", "--lockfile-only"], {
|
|
131
|
+
cwd: p.projectPath(),
|
|
132
|
+
stdin: "inherit"
|
|
133
|
+
});
|
|
129
134
|
function pinMetaCoreDeps(version) {
|
|
130
135
|
const metaPath = p.frameworkPath("core/package.json"), meta = JSON.parse(readFileSync(metaPath, "utf-8"));
|
|
131
136
|
let pinned = 0;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@stacksjs/actions",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"sideEffects": false,
|
|
5
|
-
"version": "0.70.
|
|
5
|
+
"version": "0.70.121",
|
|
6
6
|
"description": "The Stacks actions.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"contributors": [
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"prepublishOnly": "bun run build"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@stacksjs/config": "0.70.
|
|
65
|
+
"@stacksjs/config": "0.70.121",
|
|
66
66
|
"@stacksjs/bumpx": "^0.2.6",
|
|
67
67
|
"@stacksjs/bunpress": "^0.1.12",
|
|
68
68
|
"@stacksjs/logsmith": "^0.2.3",
|
|
@@ -70,23 +70,23 @@
|
|
|
70
70
|
"@stacksjs/ts-md": "^0.1.1"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@stacksjs/api": "0.70.
|
|
74
|
-
"@stacksjs/cli": "0.70.
|
|
75
|
-
"@stacksjs/config": "0.70.
|
|
76
|
-
"@stacksjs/database": "0.70.
|
|
73
|
+
"@stacksjs/api": "0.70.121",
|
|
74
|
+
"@stacksjs/cli": "0.70.121",
|
|
75
|
+
"@stacksjs/config": "0.70.121",
|
|
76
|
+
"@stacksjs/database": "0.70.121",
|
|
77
77
|
"@stacksjs/tlsx": "^0.13.2",
|
|
78
78
|
"better-dx": "^0.2.17",
|
|
79
|
-
"@stacksjs/dns": "0.70.
|
|
80
|
-
"@stacksjs/enums": "0.70.
|
|
81
|
-
"@stacksjs/env": "0.70.
|
|
82
|
-
"@stacksjs/error-handling": "0.70.
|
|
83
|
-
"@stacksjs/logging": "0.70.
|
|
84
|
-
"@stacksjs/path": "0.70.
|
|
85
|
-
"@stacksjs/security": "0.70.
|
|
86
|
-
"@stacksjs/storage": "0.70.
|
|
87
|
-
"@stacksjs/strings": "0.70.
|
|
88
|
-
"@stacksjs/utils": "0.70.
|
|
89
|
-
"@stacksjs/validation": "0.70.
|
|
79
|
+
"@stacksjs/dns": "0.70.121",
|
|
80
|
+
"@stacksjs/enums": "0.70.121",
|
|
81
|
+
"@stacksjs/env": "0.70.121",
|
|
82
|
+
"@stacksjs/error-handling": "0.70.121",
|
|
83
|
+
"@stacksjs/logging": "0.70.121",
|
|
84
|
+
"@stacksjs/path": "0.70.121",
|
|
85
|
+
"@stacksjs/security": "0.70.121",
|
|
86
|
+
"@stacksjs/storage": "0.70.121",
|
|
87
|
+
"@stacksjs/strings": "0.70.121",
|
|
88
|
+
"@stacksjs/utils": "0.70.121",
|
|
89
|
+
"@stacksjs/validation": "0.70.121"
|
|
90
90
|
},
|
|
91
91
|
"peerDependencies": {
|
|
92
92
|
"pickier": "^0.1.35"
|