@justeattakeaway/pie-webc 0.0.0-snapshot-release-20240417132628 → 0.0.0-snapshot-release-20240417133510
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 +8 -0
- package/dist/index.js +6 -0
- package/dist/react.d.ts +8 -0
- package/dist/react.js +6 -0
- package/package.json +10 -28
- package/components/button.d.ts +0 -1
- package/components/button.js +0 -1
- package/components/modal.d.ts +0 -1
- package/components/modal.js +0 -1
- package/react/button.d.ts +0 -1
- package/react/button.js +0 -1
- package/react/modal.d.ts +0 -1
- package/react/modal.js +0 -1
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/dist/react.d.ts
ADDED
package/dist/react.js
ADDED
package/package.json
CHANGED
|
@@ -1,39 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-webc",
|
|
3
3
|
"description": "Component bundle containing all PIE web components",
|
|
4
|
-
"version": "0.0.0-snapshot-release-
|
|
4
|
+
"version": "0.0.0-snapshot-release-20240417133510",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
6
9
|
"files": [
|
|
7
|
-
"
|
|
10
|
+
"dist",
|
|
8
11
|
"**/*.d.ts"
|
|
9
12
|
],
|
|
10
|
-
"exports": {
|
|
11
|
-
"./components/button": {
|
|
12
|
-
"import": "./components/button.js",
|
|
13
|
-
"require": "./components/button.js",
|
|
14
|
-
"types": "./components/button.d.ts"
|
|
15
|
-
},
|
|
16
|
-
"./react/button": {
|
|
17
|
-
"import": "./react/button.js",
|
|
18
|
-
"require": "./react/button.js",
|
|
19
|
-
"types": "./react/button.d.ts"
|
|
20
|
-
},
|
|
21
|
-
"./components/modal": {
|
|
22
|
-
"import": "./components/modal.js",
|
|
23
|
-
"require": "./components/modal.js",
|
|
24
|
-
"types": "./components/modal.d.ts"
|
|
25
|
-
},
|
|
26
|
-
"./react/modal": {
|
|
27
|
-
"import": "./react/modal.js",
|
|
28
|
-
"require": "./react/modal.js",
|
|
29
|
-
"types": "./react/modal.d.ts"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
13
|
"scripts": {
|
|
14
|
+
"build": "run -T vite build",
|
|
33
15
|
"lint:scripts": "run -T eslint .",
|
|
34
16
|
"lint:scripts:fix": "yarn lint:scripts --fix",
|
|
35
17
|
"lint:style": "echo \"Error: no scss / css to lint\" && exit 0",
|
|
36
18
|
"lint:style:fix": "yarn lint:style --fix",
|
|
19
|
+
"watch": "run -T vite build --watch",
|
|
37
20
|
"test": "echo \"Error: no test specified\" && exit 0",
|
|
38
21
|
"test:ci": "yarn test"
|
|
39
22
|
},
|
|
@@ -43,15 +26,14 @@
|
|
|
43
26
|
"@justeattakeaway/pie-components-config": "0.16.0"
|
|
44
27
|
},
|
|
45
28
|
"dependencies": {
|
|
46
|
-
"@justeattakeaway/pie-button": "0.
|
|
47
|
-
"@justeattakeaway/pie-modal": "0.
|
|
29
|
+
"@justeattakeaway/pie-button": "0.0.0-snapshot-release-20240417133510",
|
|
30
|
+
"@justeattakeaway/pie-modal": "0.0.0-snapshot-release-20240417133510",
|
|
48
31
|
"@justeattakeaway/pie-webc-core": "0.21.1"
|
|
49
32
|
},
|
|
50
33
|
"volta": {
|
|
51
34
|
"extends": "../../../package.json"
|
|
52
35
|
},
|
|
53
36
|
"sideEffects": [
|
|
54
|
-
"
|
|
55
|
-
"react/*.js"
|
|
37
|
+
"dist/*.js"
|
|
56
38
|
]
|
|
57
39
|
}
|
package/components/button.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-button';
|
package/components/button.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-button';
|
package/components/modal.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-modal';
|
package/components/modal.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-modal';
|
package/react/button.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-button/dist/react.js';
|
package/react/button.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-button/dist/react.js';
|
package/react/modal.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-modal/dist/react.js';
|
package/react/modal.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@justeattakeaway/pie-modal/dist/react.js';
|