@constructor-io/constructorio-ui-autocomplete 1.9.3 → 1.13.0
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 +17 -2
- package/dist/constructorio-ui-autocomplete-bundled.js +16 -16
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructor-io/constructorio-ui-autocomplete",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Constructor.io Autocomplete UI library for web applications",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"import": "./lib/mjs/index.js",
|
|
14
14
|
"require": "./lib/cjs/index.js"
|
|
15
15
|
},
|
|
16
|
+
"./cjs": {
|
|
17
|
+
"import": "./lib/cjs/index.js",
|
|
18
|
+
"require": "./lib/cjs/index.js"
|
|
19
|
+
},
|
|
16
20
|
"./constructorio-ui-autocomplete-bundled": {
|
|
17
21
|
"import": "./dist/constructorio-ui-autocomplete-bundled.js",
|
|
18
22
|
"require": "./dist/constructorio-ui-autocomplete-bundled.js"
|
|
@@ -35,8 +39,8 @@
|
|
|
35
39
|
"serve-built-storybook": "npx http-server docs",
|
|
36
40
|
"verify-node-version": "chmod +x ./scripts/verify-node-version.sh && ./scripts/verify-node-version.sh",
|
|
37
41
|
"preversion": "node ./src/generateVersion.js",
|
|
38
|
-
"version": "npm run
|
|
39
|
-
"compile": "
|
|
42
|
+
"version": "npm run verify-node-version && npm run build-storybook && git add -u ./docs && git add ./docs/* && git add ./src/version.ts",
|
|
43
|
+
"compile": "rm -rf lib && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run copy-styles && vite build"
|
|
40
44
|
},
|
|
41
45
|
"author": "constructor.io",
|
|
42
46
|
"license": "MIT",
|