@fireproof/core 0.16.4 → 0.16.6

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.16.4",
3
+ "version": "0.16.6",
4
4
  "description": "Live database for the web.",
5
5
  "type": "module",
6
6
  "module": "./dist/browser/fireproof.js",
@@ -116,7 +116,7 @@
116
116
  "scripts": {
117
117
  "analyze": "node ./scripts/analyze.js",
118
118
  "build": "tsup && npm run cp:artifacts",
119
- "build:all": " npm run build && npm run test:browser",
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",
@@ -136,6 +136,7 @@
136
136
  "test": "npm run build && npm run test:node",
137
137
  "test:scripts": "npm run test && tsc",
138
138
  "test:browser": "node ./scripts/browser-test.js",
139
+ "test:node_build": "cd test/node && pnpm i && pnpm test",
139
140
  "test:coverage": "c8 --reporter=html --include='dist/*' node ./scripts/test.js && open coverage/src/index.html",
140
141
  "test:node": "node ./scripts/test.js",
141
142
  "test:serve": "npx serve-http test/www -p 8080",