valyrian.js 7.0.1 → 7.0.2
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 +3 -1
- package/tsconfig.json +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "valyrian.js",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
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>",
|
|
@@ -16,10 +16,12 @@
|
|
|
16
16
|
"types": "dist/**/*.d.ts",
|
|
17
17
|
"exports": {
|
|
18
18
|
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
19
20
|
"import": "./dist/index.mjs",
|
|
20
21
|
"require": "./dist/index.js"
|
|
21
22
|
},
|
|
22
23
|
"./*": {
|
|
24
|
+
"types": "./dist/*.d.ts",
|
|
23
25
|
"import": "./dist/*/index.mjs",
|
|
24
26
|
"require": "./dist/*/index.js"
|
|
25
27
|
}
|
package/tsconfig.json
CHANGED
|
@@ -10,10 +10,8 @@
|
|
|
10
10
|
"esModuleInterop": true,
|
|
11
11
|
"jsxFactory": "v",
|
|
12
12
|
"jsxFragmentFactory": "v.fragment",
|
|
13
|
-
"rootDir": "
|
|
13
|
+
"rootDir": "lib",
|
|
14
14
|
"paths": {
|
|
15
|
-
"valyrian.js": ["./lib/index.ts"],
|
|
16
|
-
"valyrian.js/*": ["./lib/*"],
|
|
17
15
|
"node_modules/*": ["./node_modules/*"]
|
|
18
16
|
}
|
|
19
17
|
},
|