cloesce 0.0.4-unstable.0 → 0.0.4-unstable.1
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/{dist/README.md → README.md} +1 -0
- package/dist/cli.js +0 -0
- package/dist/generator.wasm +0 -0
- package/dist/orm.wasm +0 -0
- package/package.json +2 -2
|
@@ -17,6 +17,7 @@ Internal documentation going over design decisions and general thoughts for each
|
|
|
17
17
|
- Create an NPM project and install cloesce
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
+
# check https://www.npmjs.com/package/cloesce/v/0.0.4-unstable.0?activeTab=versions for the most recent patch
|
|
20
21
|
npm i cloesce@0.0.4-unstable.0
|
|
21
22
|
```
|
|
22
23
|
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/dist/generator.wasm
CHANGED
|
Binary file
|
package/dist/orm.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloesce",
|
|
3
|
-
"version": "0.0.4-unstable.
|
|
3
|
+
"version": "0.0.4-unstable.1",
|
|
4
4
|
"description": "A tool to extract and compile TypeScript code into something wrangler can consume and deploy for D1 Databases and Cloudflare Workers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"format:fix": "prettier --write .",
|
|
10
10
|
"format": "prettier --check .",
|
|
11
11
|
"typecheck": "tsc --noEmit",
|
|
12
|
-
"build": "tsc -p tsconfig.json && npm run copy-rs-orm-wasm && npm run copy-generator-wasm",
|
|
12
|
+
"build": "tsc -p tsconfig.json && npm run copy-rs-orm-wasm && npm run copy-generator-wasm && chmod +x dist/cli.js",
|
|
13
13
|
"copy-rs-orm-wasm": "cp ../orm/target/wasm32-unknown-unknown/release/orm.wasm ./dist/orm.wasm",
|
|
14
14
|
"copy-generator-wasm": "cp ../../generator/target/wasm32-wasip1/release/cli.wasm ./dist/generator.wasm"
|
|
15
15
|
},
|