@brightsideoy/kama 0.1.0-alpha.23 → 0.1.0-alpha.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +4 -6
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -141,12 +141,10 @@ async function createFullWorkspace() {
|
|
|
141
141
|
type: 'module',
|
|
142
142
|
version: '1.0.0',
|
|
143
143
|
scripts: {
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"dev": "npm run schema:local && npm run bundle-schemas && wrangler dev",
|
|
149
|
-
"deploy": "npm run schema:remote && npm run bundle-schemas && wrangler deploy"
|
|
144
|
+
"schema:local": `wrangler d1 execute ${dbName} --local --file=../node_modules/@brightsideoy/kama/schema.sql`,
|
|
145
|
+
"schema:remote": `wrangler d1 execute ${dbName} --remote --file=../node_modules/@brightsideoy/kama/schema.sql`,
|
|
146
|
+
"dev": "npm run schema:local && wrangler dev",
|
|
147
|
+
"deploy": "npm run schema:remote && wrangler deploy"
|
|
150
148
|
},
|
|
151
149
|
dependencies: {
|
|
152
150
|
'@brightsideoy/kama': 'latest',
|