storyly-web 3.6.8 → 3.6.10
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 -2
- package/tsconfig.json +3 -1
- package/dist/index.js +0 -415
- package/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storyly-web",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.10",
|
|
4
4
|
"description": "Web stories by Storyly",
|
|
5
|
-
"main": "index.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
6
7
|
"scripts": {
|
|
7
8
|
"start": "cp src/fonts.css dist && parcel index.html --host dev.storyly --open --port 8083 --https --cert dev.storyly.pem --key dev.storyly-key.pem",
|
|
8
9
|
"startlocal": "parcel index.html --open --port 8083 --https --cert localhost.pem --key localhost-key.pem",
|
package/tsconfig.json
CHANGED
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"forceConsistentCasingInFileNames": true,
|
|
13
13
|
"resolveJsonModule": true,
|
|
14
14
|
"allowJs": true,
|
|
15
|
-
"allowImportingTsExtensions": true
|
|
15
|
+
"allowImportingTsExtensions": true,
|
|
16
|
+
"declaration": true,
|
|
17
|
+
"outDir": "./dist"
|
|
16
18
|
},
|
|
17
19
|
"include": ["src/**/*"],
|
|
18
20
|
"exclude": ["./node_modules", "./build", "./dist", "./.vscode"]
|