Skip to content

Commit

Permalink
Merge pull request #2016 from mashehu/fix-build-step
Browse files Browse the repository at this point in the history
fix cache compression step
  • Loading branch information
mashehu authored Oct 6, 2023
2 parents ed5536d + 0417753 commit 608c6cb
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 --no-xattrs -f .cache.tar.xz .cache && node bin/build-content-collection",
"build-md-cache": "node bin/build-cache.js && tar -cJf .cache.tar.xz --no-xattrs .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 --no-xattrs -f .cache.tar.xz .cache",
"build-pipeline-json": "node bin/pipelines.json.js && tar -cJf .cache.tar.xz --no-xattrs .cache",
"build-component-json": "node bin/components.json.js"
},
"dependencies": {
Expand Down

0 comments on commit 608c6cb

Please sign in to comment.