Skip to content

Commit

Permalink
Use Rsync for syncing docs dir
Browse files Browse the repository at this point in the history
cp -rl was wonky on macOS. rsync worked much better.
Makes the release available on http://127.0.0.1:4000/releases/dev/release/
  • Loading branch information
fatso83 committed Oct 18, 2023
1 parent f0d250b commit ca26da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"test": "npm run test-node && npm run test-headless && npm run test-webworker",
"check-dependencies": "dependency-check package.json --no-dev --ignore-module esm",
"build": "node ./build.cjs",
"dev-docs": "cd docs; cp -rl release-source releases/dev; npm run serve-docs",
"dev-docs": "cd docs; rsync -r --delete release-source/ releases/dev; npm run serve-docs",
"build-docs": "cd docs; bundle exec jekyll build",
"serve-docs": "cd docs; bundle exec jekyll serve --incremental --verbose --livereload",
"lint": "eslint --max-warnings 101 '**/*.{js,cjs,mjs}'",
Expand Down

0 comments on commit ca26da1

Please sign in to comment.