cloesce 0.0.4-unstable.6 → 0.0.4-unstable.8

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/README.md CHANGED
@@ -17,7 +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
- npm i cloesce@0.0.4-unstable.6
20
+ npm i cloesce@0.0.4-unstable.8
21
21
  ```
22
22
 
23
23
  ### 2) TypeScript
package/dist/cli.js CHANGED
@@ -155,6 +155,8 @@ async function extract(args) {
155
155
  const project = new Project({
156
156
  compilerOptions: {
157
157
  strictNullChecks: true,
158
+ experimentalDecorators: true,
159
+ emitDecoratorMetadata: true,
158
160
  },
159
161
  });
160
162
  findCloesceProject(root, searchPaths, project);
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.6",
3
+ "version": "0.0.4-unstable.8",
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",