mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-09 11:14:20 +01:00
introduce package.json for separate *-browser package (both database and sync)
This commit is contained in:
25
sync/javascript/Makefile
Normal file
25
sync/javascript/Makefile
Normal file
@@ -0,0 +1,25 @@
|
||||
pack-native:
|
||||
npm publish --dry-run
|
||||
npm pack
|
||||
pack-browser:
|
||||
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-browser:
|
||||
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-browser-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
|
||||
Reference in New Issue
Block a user