@useparagon/connect 2.3.2-experimental.20500.2 → 2.3.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/dist/src/ConnectSDK.js +1 -1
- package/dist/src/file-picker/helpers/microsoftPicker.d.ts +0 -2
- package/dist/src/index.js +1 -1
- package/package.json +4 -5
- package/dist/src/bundledMode.d.ts +0 -1
- package/dist/src/file-picker/vendor/box/runtime.d.ts +0 -2
- package/dist/src/file-picker/vendor/box/runtime.stub.d.ts +0 -1
- package/dist/src/file-picker/vendor/google/runtime.d.ts +0 -2
- package/dist/src/file-picker/vendor/google/runtime.stub.d.ts +0 -1
- package/dist/src/index.bundled.d.ts +0 -5
- package/dist/src/report.bundled.html +0 -39
- package/dist/src/with-third-party-scripts.js +0 -2
- package/dist/src/with-third-party-scripts.js.LICENSE.txt +0 -179
- package/src/types/assets.d.ts +0 -12
package/package.json
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@useparagon/connect",
|
|
3
|
-
"version": "2.3.2
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "Embed integrations into your app with the Paragon SDK",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./dist/src/index.js",
|
|
9
|
-
"./ConnectSDK": "./dist/src/ConnectSDK.js"
|
|
10
|
-
"./with-third-party-scripts": "./dist/src/with-third-party-scripts.js"
|
|
9
|
+
"./ConnectSDK": "./dist/src/ConnectSDK.js"
|
|
11
10
|
},
|
|
12
11
|
"scripts": {
|
|
13
12
|
"start:dev": "NODE_ENV=development webpack serve",
|
|
14
|
-
"build:prod": "yarn typecheck && yarn clean &&
|
|
13
|
+
"build:prod": "yarn typecheck && yarn clean && webpack --config webpack.config.js",
|
|
15
14
|
"build:watch": "yarn build --watch",
|
|
16
|
-
"build": "yarn typecheck && yarn clean &&
|
|
15
|
+
"build": "yarn typecheck && yarn clean && webpack --config webpack.config.js",
|
|
17
16
|
"ci:compile": "whiskers",
|
|
18
17
|
"clean:server": "rimraf ./dist/src",
|
|
19
18
|
"clean": "rimraf coverage dist",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const isBundledBuild: () => boolean;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const ensureBundledBoxStyles: () => void;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const installBundledGoogleScriptInterceptors: () => void;
|