@theholocron/cli 2.0.0-alpha.27 → 2.0.0-alpha.29
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/cli.mjs +4 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -866,6 +866,7 @@ runs:
|
|
|
866
866
|
|
|
867
867
|
steps:
|
|
868
868
|
- name: Install dependencies
|
|
869
|
+
if: \${{ hashFiles('pnpm-lock.yaml') != '' }}
|
|
869
870
|
shell: bash
|
|
870
871
|
run: pnpm install --frozen-lockfile
|
|
871
872
|
`,
|
|
@@ -884,13 +885,14 @@ runs:
|
|
|
884
885
|
|
|
885
886
|
steps:
|
|
886
887
|
- name: Setup pnpm
|
|
888
|
+
if: \${{ hashFiles('pnpm-lock.yaml') != '' }}
|
|
887
889
|
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4
|
|
888
890
|
|
|
889
891
|
- name: Setup Node.js
|
|
890
892
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
891
893
|
with:
|
|
892
894
|
node-version: \${{ inputs.node-version }}
|
|
893
|
-
cache: pnpm
|
|
895
|
+
cache: \${{ hashFiles('pnpm-lock.yaml') != '' && 'pnpm' || '' }}
|
|
894
896
|
|
|
895
897
|
- name: Add node_modules/.bin to PATH
|
|
896
898
|
shell: bash
|
|
@@ -1162,6 +1164,7 @@ jobs:
|
|
|
1162
1164
|
|
|
1163
1165
|
- uses: theholocron/.github/.github/actions/setup@main
|
|
1164
1166
|
name: Setup
|
|
1167
|
+
if: \${{ hashFiles('pnpm-lock.yaml') != '' }}
|
|
1165
1168
|
|
|
1166
1169
|
- uses: super-linter/super-linter/slim@4ce20838b8ab83717e78138c5b3a1407148e0918 # v8.7.0
|
|
1167
1170
|
name: Run Super Linter
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/cli",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.29",
|
|
4
4
|
"description": "The Holocron CLI — a pluggable, capability-based orchestrator for spinning up and operating software projects.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/cli#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|