@brightsideoy/kama 0.1.0-alpha.23 → 0.1.0-alpha.29

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.
Files changed (2) hide show
  1. package/bin/cli.js +4 -6
  2. 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
- "build-schema": "tsx node_modules/@brightsideoy/kama/scripts/build-schema.ts",
145
- "bundle-schemas": "node node_modules/@brightsideoy/kama/scripts/bundle-definitions.js",
146
- "schema:local": `npm run build-schema && wrangler d1 execute ${dbName} --local --file=./schema.sql`,
147
- "schema:remote": `npm run build-schema && wrangler d1 execute ${dbName} --remote --file=./schema.sql`,
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightsideoy/kama",
3
- "version": "0.1.0-alpha.23",
3
+ "version": "0.1.0-alpha.29",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",