lib0 0.2.67 → 0.2.68
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/bin/0serve.d.ts +3 -0
- package/bin/0serve.d.ts.map +1 -0
- package/bin/0serve.js +88 -0
- package/bin/gentesthtml.js +1 -1
- package/coverage/tmp/coverage-53209-1678990177518-0.json +1 -0
- package/dist/bin/0serve.d.ts +3 -0
- package/dist/bin/0serve.d.ts.map +1 -0
- package/package.json +4 -4
- package/coverage/tmp/coverage-12279-1678794128105-0.json +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"0serve.d.ts","sourceRoot":"","sources":["../../bin/0serve.js"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lib0",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.68",
|
|
4
4
|
"description": "",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"url": "https://github.com/sponsors/dmonad"
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|
|
15
|
-
"0gentesthtml": "./bin/gentesthtml.js"
|
|
15
|
+
"0gentesthtml": "./bin/gentesthtml.js",
|
|
16
|
+
"0serve": "./bin/0serve.js"
|
|
16
17
|
},
|
|
17
18
|
"exports": {
|
|
18
19
|
"./package.json": "./package.json",
|
|
@@ -414,7 +415,6 @@
|
|
|
414
415
|
"devDependencies": {
|
|
415
416
|
"@types/node": "^18.14.0",
|
|
416
417
|
"c8": "^7.13.0",
|
|
417
|
-
"http-server": "^0.12.3",
|
|
418
418
|
"jsdoc-api": "^8.0.0",
|
|
419
419
|
"jsdoc-plugin-typescript": "^2.2.1",
|
|
420
420
|
"rollup": "^2.42.1",
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
"clean": "rm -rf dist *.d.ts */*.d.ts *.d.ts.map */*.d.ts.map",
|
|
426
426
|
"types": "tsc --outDir .",
|
|
427
427
|
"dist": "rollup -c",
|
|
428
|
-
"debug": "npm run gentesthtml &&
|
|
428
|
+
"debug": "npm run gentesthtml && npx 0serve -o test.html",
|
|
429
429
|
"test": "c8 --check-coverage --lines 100 --branches 100 --functions 100 --statements 100 node --unhandled-rejections=strict ./test.js --repetition-time 50 --production",
|
|
430
430
|
"test-inspect": "node --inspect-brk --unhandled-rejections=strict ./test.js --repetition-time 50 --production",
|
|
431
431
|
"test-extensive": "node test.js && npm test -- --repetition-time 30000 --extensive",
|