@selwise/widget 1.0.1 → 1.0.3
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/README.md +93 -39
- package/dist/npm/cjs/index.cjs +2 -0
- package/dist/npm/cjs/index.cjs.LICENSE.txt +1 -0
- package/dist/npm/cjs/index.d.ts +59 -0
- package/dist/npm/esm/index.d.ts +59 -0
- package/dist/npm/esm/index.mjs +2 -0
- package/dist/npm/esm/index.mjs.LICENSE.txt +1 -0
- package/package.json +2 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*! @license DOMPurify 3.3.1 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.3.1/LICENSE */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selwise/widget",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Selwise storefront widget runtime for CDN and npm integrations.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"build:npm:types": "node ./scripts/write-npm-types.js",
|
|
49
49
|
"build:npm": "rm -rf ./dist/npm && pnpm run build:npm:bundle && pnpm run build:npm:types",
|
|
50
50
|
"build": "pnpm run clean && pnpm run build:npm && pnpm run build:cdn",
|
|
51
|
+
"prepack": "pnpm run build:npm",
|
|
51
52
|
"analyze": "webpack --mode production --env analyze",
|
|
52
53
|
"pack:check": "pnpm pack --pack-destination ./dist/pack",
|
|
53
54
|
"test": "jest",
|