Skip to content

Commit

Permalink
Merge pull request #2018 from mashehu/fix-build-step
Browse files Browse the repository at this point in the history
try different command
  • Loading branch information
mashehu authored Oct 6, 2023
2 parents 608c6cb + 97b34da commit ac9b29b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"start": "astro dev",
"build-preview": "astro build && astro preview",
"build-cache": "npm run build-pipeline-json && npm run build-component-json && npm run build-md-cache",
"build-md-cache": "node bin/build-cache.js && tar -cJf .cache.tar.xz --no-xattrs .cache && node bin/build-content-collection",
"build-md-cache": "node bin/build-cache.js && tar -cvJf .cache.tar.xz .cache && node bin/build-content-collection",
"build-cache-no-tar": "npm run build-pipeline-json && npm run build-component-json && node bin/build-cache.js && node bin/build-content-collection",
"build-cache-force": "npm run build-pipeline-json && npm run build-component-json && npm run build-md-cache",
"build": "tar -xf .cache.tar.xz && node bin/build-content-collection && NODE_OPTIONS='--max-old-space-size=4096' astro build",
"build-without-cache": "npm run build-cache-no-tar && astro build",
"preview": "astro preview",
"build-pipeline-json": "node bin/pipelines.json.js && tar -cJf .cache.tar.xz --no-xattrs .cache",
"build-pipeline-json": "node bin/pipelines.json.js && tar -cvJf .cache.tar.xz .cache",
"build-component-json": "node bin/components.json.js"
},
"dependencies": {
Expand Down

0 comments on commit ac9b29b

Please sign in to comment.