@potop/public-dashboard 0.1.3 → 0.1.5
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/dist/index.d.ts +27 -0
- package/dist/redash-public-dashboard.js +1 -1
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@potop/public-dashboard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Embeddable, iframe-free React component for Redash public dashboards",
|
|
5
5
|
"main": "dist/redash-public-dashboard.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
6
7
|
"scripts": {
|
|
7
|
-
"build": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.config.js",
|
|
8
|
-
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --config webpack.config.js",
|
|
8
|
+
"build": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production webpack --config webpack.config.js && cp index.d.ts dist/index.d.ts",
|
|
9
|
+
"build:dev": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --config webpack.config.js && cp index.d.ts dist/index.d.ts",
|
|
9
10
|
"watch": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=development webpack --watch --config webpack.config.js",
|
|
10
11
|
"prepublishOnly": "yarn build"
|
|
11
12
|
},
|