mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-17 08:34:19 +01:00
21 lines
640 B
Makefile
21 lines
640 B
Makefile
pack-native:
|
|
npm publish --dry-run && npm pack
|
|
pack-wasm:
|
|
cp package.json package.native.json
|
|
cp package.browser.json package.json
|
|
npm publish --dry-run && npm pack; cp package.native.json package.json
|
|
|
|
publish-native:
|
|
npm publish --access public
|
|
publish-wasm:
|
|
cp package.json package.native.json
|
|
cp package.browser.json package.json
|
|
npm publish --access public; cp package.native.json package.json
|
|
|
|
publish-native-next:
|
|
npm publish --tag next --access public
|
|
publish-wasm-next:
|
|
cp package.json package.native.json
|
|
cp package.browser.json package.json
|
|
npm publish --tag next --access public; cp package.native.json package.json
|