Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit b7bb9b2

Browse files
committed
fix: replace build command
1 parent 6fd5c01 commit b7bb9b2

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/composite-actions/install/action.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,6 @@ runs:
3434
${{ runner.os }}-pnpm-cypress-
3535
${{ runner.os }}-pnpm-store-
3636
37-
# - uses: actions/cache@v3
38-
# name: Setup pnpm cache
39-
# with:
40-
# path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
41-
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42-
# restore-keys: |
43-
# ${{ runner.os }}-pnpm-store-
44-
4537
- name: Setup Node.js
4638
uses: actions/setup-node@v3
4739
with:

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Build
1414
runs-on: ubuntu-latest
1515
env:
16-
NODE_OPTIONS: "--max-old-space-size=16384"
16+
# NODE_OPTIONS: "--max-old-space-size=16384"
1717
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
1818
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
1919

modules/nuxt/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
"author": "Jonathan Bakebwa [email protected]",
1818
"license": "MIT",
1919
"scripts": {
20-
"prebuild": "nuxt-module-build --stub && nuxi prepare playground",
21-
"prebuild:fast": "nuxt-module-build --stub && nuxi prepare playground",
20+
"prepare:playground": "nuxi prepare playground",
21+
"prebuild": "pnpm prepare:playground",
22+
"prebuild:fast": "pnpm prepare:playground",
2223
"clean": "rimraf dist .turbo",
2324
"build": "nuxt-module-build",
2425
"build:fast": "nuxt-module-build",

0 commit comments

Comments
 (0)