@malloydata/malloy-query-builder 0.0.349 → 0.0.351

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.
@@ -0,0 +1,4 @@
1
+ flow: {
2
+ inputs = ["dist/**/*.d.ts"]
3
+ commands = ["npx ts-node ../../scripts/gen-flow.ts --skip expects.d.ts"]
4
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloy-query-builder",
3
- "version": "0.0.349",
3
+ "version": "0.0.351",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -14,17 +14,18 @@
14
14
  },
15
15
  "scripts": {
16
16
  "test": "jest --config=../../jest.config.js",
17
- "clean": "tsc --build --clean && rm -f tsconfig.tsbuildinfo && rimraf @flowtyped",
17
+ "clean": "tsc --build --clean && rm -f tsconfig.tsbuildinfo && node ../../scripts/femto-build.js --clean && rimraf @flowtyped",
18
+ "dev": "tsc --build",
18
19
  "build": "tsc --build && npm run generate-flow",
19
20
  "prepublishOnly": "npm run clean && npm run build",
20
- "generate-flow": "ts-node ../../scripts/gen-flow.ts --skip expects.d.ts",
21
+ "generate-flow": "node ../../scripts/femto-build.js flow",
21
22
  "generate-docs": "npx typedoc --excludeInternal",
22
23
  "serve-docs": "npx http-server -o docs"
23
24
  },
24
25
  "dependencies": {
25
- "@malloydata/malloy-filter": "0.0.349",
26
- "@malloydata/malloy-interfaces": "0.0.349",
27
- "@malloydata/malloy-tag": "0.0.349"
26
+ "@malloydata/malloy-filter": "0.0.351",
27
+ "@malloydata/malloy-interfaces": "0.0.351",
28
+ "@malloydata/malloy-tag": "0.0.351"
28
29
  },
29
30
  "devDependencies": {
30
31
  "http-server": "^14.1.1",