Skip to content

Commit

Permalink
cp -R instead of mv
Browse files Browse the repository at this point in the history
  • Loading branch information
mateogianolio committed May 6, 2024
1 parent f3dd09f commit b94ac5e
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 @@ -19,7 +19,7 @@
"scripts": {
"test": "jest",
"benchmark": "for file in $(ls src/**/*.bench.ts); do ts-node $file; done",
"docs": "rm -rf sphinx/code && npx tsc --outDir sphinx/code && make -C sphinx html && mv docs/html/* docs && rm -rf docs/html",
"docs": "rm -rf sphinx/code && npx tsc --outDir sphinx/code && make -C sphinx html && cp -R docs/html/* docs && rm -rf docs/html",
"build:node": "esbuild --bundle src/index.ts --minify --sourcemap --platform=node --outfile=dist/index.js --external:nblas --external:nlapack",
"build:browser": "esbuild --bundle src/index.ts --minify --sourcemap --platform=browser --global-name=v --outfile=dist/index.browser.js --external:nblas --external:nlapack",
"build:esm": "esbuild --bundle src/index.ts --minify --sourcemap --format=esm --outfile=dist/index.mjs --external:nblas --external:nlapack",
Expand Down

0 comments on commit b94ac5e

Please sign in to comment.