@justeattakeaway/pie-button 0.12.0 → 0.12.1
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +9 -0
- package/README.md +1 -5
- package/dist/index.js +0 -0
- package/dist/types/index.d.ts +0 -0
- package/dist/types/src/decorators.d.ts +0 -0
- package/dist/types/src/decorators.d.ts.map +0 -0
- package/dist/types/src/defs.d.ts +0 -0
- package/dist/types/src/defs.d.ts.map +0 -0
- package/dist/types/src/index.d.ts +0 -0
- package/dist/types/src/index.d.ts.map +0 -0
- package/package.json +1 -2
- package/tsconfig.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,6 +6,6 @@ computing gzip size...
|
|
|
6
6
|
[2mdist/[22m[36mindex.js [39m[1m[2m4.32 kB[22m[1m[22m[2m │ gzip: 1.65 kB[22m
|
|
7
7
|
[32m
|
|
8
8
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
9
|
-
[32m✓[39m built in
|
|
10
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
9
|
+
[32m✓[39m built in 23.55s
|
|
10
|
+
[32m[36m[vite:dts][32m Declaration files built in 21956ms.
|
|
11
11
|
[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [Changed] - Added missing newline at the end of tsconfig.json ([#439](https://github.com/justeattakeaway/pie/pull/439)) by [@fernandofranca](https://github.com/fernandofranca)
|
|
8
|
+
|
|
9
|
+
[Changed] - Updated README.md
|
|
10
|
+
[Removed] - Removed npm `dev` script
|
|
11
|
+
|
|
3
12
|
## 0.12.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -40,15 +40,11 @@ cd packages/components/pie-button
|
|
|
40
40
|
yarn build
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
Compile and watch for changes (auto-compiles `dist` on save)
|
|
44
44
|
```
|
|
45
45
|
yarn watch
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
Local dev server using Vite (with hot module reloading)
|
|
49
|
-
```
|
|
50
|
-
yarn dev
|
|
51
|
-
```
|
|
52
48
|
## Props
|
|
53
49
|
|
|
54
50
|
| Property | Type | Default | Description |
|
package/dist/index.js
CHANGED
|
File without changes
|
package/dist/types/index.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/types/src/defs.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-button",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "PIE design system button built using web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "run -T vite build",
|
|
11
11
|
"watch": "run -T vite build --watch",
|
|
12
|
-
"dev": "run -T vite",
|
|
13
12
|
"test": "echo \"Error: no test specified\" && exit 0",
|
|
14
13
|
"test:browsers": "npx playwright test -c ./playwright-lit.config.ts",
|
|
15
14
|
"test:browsers:ci": "yarn test:browsers",
|
package/tsconfig.json
CHANGED