@wix/categories 1.0.69 → 1.0.71
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/build/es/package.json +3 -0
- package/context.ts +1 -0
- package/index.ts +3 -0
- package/meta.ts +1 -0
- package/package.json +23 -18
- package/context/package.json +0 -7
- package/meta/package.json +0 -7
- package/type-bundles/context.bundle.d.ts +0 -4747
- package/type-bundles/index.bundle.d.ts +0 -4747
- package/type-bundles/meta.bundle.d.ts +0 -5488
package/context.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as categories from '@wix/categories_categories/context';
|
package/index.ts
ADDED
package/meta.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as categories from '@wix/categories_categories/meta';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/categories",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.71",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -9,30 +9,35 @@
|
|
|
9
9
|
"wix-sdk-module=backend,page,public"
|
|
10
10
|
],
|
|
11
11
|
"sideEffects": false,
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
"main": "./index.js",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./build/es/index.js",
|
|
16
|
+
"require": "./build/cjs/index.js"
|
|
17
|
+
},
|
|
18
|
+
"./meta": {
|
|
19
|
+
"import": "./build/es/meta.js",
|
|
20
|
+
"require": "./build/cjs/meta.js"
|
|
21
|
+
},
|
|
22
|
+
"./context": {
|
|
23
|
+
"import": "./build/es/context.js",
|
|
24
|
+
"require": "./build/cjs/context.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
16
27
|
"files": [
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"type-bundles"
|
|
28
|
+
"*",
|
|
29
|
+
"!config/*",
|
|
30
|
+
"!tsconfig.json",
|
|
31
|
+
"!tsconfig.esm.json"
|
|
22
32
|
],
|
|
23
33
|
"dependencies": {
|
|
24
|
-
"@wix/categories_categories": "1.0.
|
|
34
|
+
"@wix/categories_categories": "1.0.47"
|
|
25
35
|
},
|
|
26
36
|
"devDependencies": {
|
|
27
|
-
"glob": "^10.4.1",
|
|
28
|
-
"rollup": "^4.18.0",
|
|
29
|
-
"rollup-plugin-dts": "^6.1.1",
|
|
30
37
|
"typescript": "^5.3.2"
|
|
31
38
|
},
|
|
32
39
|
"scripts": {
|
|
33
|
-
"build": "tsc -b tsconfig.json tsconfig.esm.json
|
|
34
|
-
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
35
|
-
"build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
|
|
40
|
+
"build": "tsc -b tsconfig.json tsconfig.esm.json",
|
|
36
41
|
"test": ":"
|
|
37
42
|
},
|
|
38
43
|
"wix": {
|
|
@@ -46,5 +51,5 @@
|
|
|
46
51
|
"fqdn": ""
|
|
47
52
|
}
|
|
48
53
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "d2c906b8663c7a7a2bf8a5ac116fa66b656434aa7edc3517afb2eb91"
|
|
50
55
|
}
|
package/context/package.json
DELETED