valyrian.js 7.2.3 → 7.2.4
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/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valyrian.js",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.4",
|
|
4
4
|
"description": "Lightweight steel to forge PWAs. (Minimal Frontend Framework with server side rendering and other capabilities)",
|
|
5
5
|
"repository": "git@github.com:Masquerade-Circus/valyrian.js.git",
|
|
6
6
|
"author": "Masquerade <christian@masquerade-circus.net>",
|
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
"import": "./dist/index.mjs",
|
|
21
21
|
"require": "./dist/index.js"
|
|
22
22
|
},
|
|
23
|
+
"./lib/*": {
|
|
24
|
+
"import": "./lib/*/index.ts"
|
|
25
|
+
},
|
|
23
26
|
"./*": {
|
|
24
27
|
"types": "./dist/*.d.ts",
|
|
25
28
|
"import": "./dist/*/index.mjs",
|
|
@@ -62,7 +65,7 @@
|
|
|
62
65
|
"dev:web": "browser-sync start --config 'www/bs-config.js'",
|
|
63
66
|
"build": "npm run build:source && npm run remark",
|
|
64
67
|
"build:source": "cross-env NODE_ENV=production node source.js",
|
|
65
|
-
"test": "cross-env NODE_ENV=development nyc mocha --forbid-only --timeout 15000 --require ./register --exit \"test/**/*_test.js\"",
|
|
68
|
+
"test": "cross-env NODE_ENV=development nyc mocha --forbid-only --timeout 15000 --slow 0 --require ./register --enable-source-maps --exit \"test/**/*_test.js\"",
|
|
66
69
|
"coverage": "nyc report --reporter=lcov",
|
|
67
70
|
"remark": "remark . -o",
|
|
68
71
|
"commit": "git add . && git-cz",
|
|
@@ -115,8 +118,7 @@
|
|
|
115
118
|
"nyc": {
|
|
116
119
|
"exclude": [
|
|
117
120
|
"test",
|
|
118
|
-
"
|
|
119
|
-
"dist"
|
|
121
|
+
"register.js"
|
|
120
122
|
]
|
|
121
123
|
},
|
|
122
124
|
"remarkConfig": {
|