@fireproof/core 0.17.3 → 0.17.4

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fireproof/core",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "description": "Live database for the web.",
5
5
  "type": "module",
6
6
  "module": "./dist/browser/fireproof.js",
@@ -111,18 +111,21 @@
111
111
  "p-limit": "^4.0.0",
112
112
  "prolly-trees": "^1.0.4",
113
113
  "uuidv7": "^0.6.2",
114
- "@fireproof/encrypted-blockstore": "^0.17.2"
114
+ "@fireproof/encrypted-blockstore": "^0.17.3"
115
115
  },
116
116
  "scripts": {
117
117
  "analyze": "node ./scripts/analyze.js",
118
- "build": "tsup && npm run cp:artifacts",
118
+ "build": "npm run build:version && tsup && npm run cp:artifacts",
119
119
  "build:all": " npm run build && npm run test:browser && npm run test:node_build",
120
120
  "build:clean": "rm -rf dist",
121
121
  "build:esbuild": "node ./scripts/build.js",
122
122
  "build:rollup": "rollup -c scripts/rollup.js",
123
123
  "build:tsc": "npm run build:clean && tsc && mkdir dist/tsc && mv dist/*.js dist/tsc/ && node ./scripts/types.js",
124
+ "build:types": "tsc --declaration --outDir dist/types && node ./scripts/types.js",
124
125
  "build:version": "node -p \"'export const PACKAGE_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
125
- "build:_types": "tsc --declaration --outDir dist/types && node ./scripts/types.js",
126
+ "build:watch": "tsup --watch",
127
+ "build:watch:solid": "pnpm build:watch",
128
+ "build:watch:react": "pnpm build:watch",
126
129
  "clean": "rm -rf node_modules",
127
130
  "cp:artifacts": "cp dist/browser/fireproof.global.js test/www/fireproof.iife.js",
128
131
  "cp:artifacts:scripts": "cp dist/browser/fireproof.iife.* test/www/",