@superblocksteam/cli 1.1.1 → 1.1.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.
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ $ npm install -g @superblocksteam/cli
|
|
|
12
12
|
$ superblocks COMMAND
|
|
13
13
|
running command...
|
|
14
14
|
$ superblocks (--version)
|
|
15
|
-
@superblocksteam/cli/1.1.
|
|
15
|
+
@superblocksteam/cli/1.1.2 linux-x64 node-v18.18.2
|
|
16
16
|
$ superblocks --help [COMMAND]
|
|
17
17
|
USAGE
|
|
18
18
|
$ superblocks COMMAND
|
|
@@ -296,6 +296,10 @@ async function getHeadCommit(branch) {
|
|
|
296
296
|
}
|
|
297
297
|
exports.getHeadCommit = getHeadCommit;
|
|
298
298
|
async function isGitRepoDirty() {
|
|
299
|
+
if (process.env.CI === "true") {
|
|
300
|
+
// Skip dirtiness check in CI environments
|
|
301
|
+
return false;
|
|
302
|
+
}
|
|
299
303
|
const git = (0, simple_git_1.simpleGit)();
|
|
300
304
|
const status = await git.status();
|
|
301
305
|
return !status.isClean();
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superblocksteam/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "Official Superblocks CLI",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superblocks": "bin/run"
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"@oclif/core": "^2.11.7",
|
|
19
19
|
"@oclif/plugin-help": "^5.2.16",
|
|
20
20
|
"@oclif/plugin-plugins": "^3.1.10",
|
|
21
|
-
"@superblocksteam/css-plugin": "1.1.
|
|
22
|
-
"@superblocksteam/react-shim": "1.1.
|
|
23
|
-
"@superblocksteam/sdk": "1.1.
|
|
24
|
-
"@superblocksteam/util": "1.1.
|
|
25
|
-
"@superblocksteam/vite-custom-component-reload-plugin": "1.1.
|
|
21
|
+
"@superblocksteam/css-plugin": "1.1.2",
|
|
22
|
+
"@superblocksteam/react-shim": "1.1.2",
|
|
23
|
+
"@superblocksteam/sdk": "1.1.2",
|
|
24
|
+
"@superblocksteam/util": "1.1.2",
|
|
25
|
+
"@superblocksteam/vite-custom-component-reload-plugin": "1.1.2",
|
|
26
26
|
"@vitejs/plugin-react": "^4.0.4",
|
|
27
27
|
"colorette": "^2.0.19",
|
|
28
28
|
"enquirer": "^2.3.6",
|