@justeattakeaway/pie-button 0.6.0 → 0.6.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 +1 -1
- package/CHANGELOG.md +8 -0
- package/README.md +5 -0
- package/package.json +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@justeattakeaway/pie-button:build: cache hit, replaying output
|
|
1
|
+
@justeattakeaway/pie-button:build: cache hit, replaying output d804f716cd573de0
|
|
2
2
|
@justeattakeaway/pie-button:build: [36mvite v4.0.4 [32mbuilding for production...[36m[39m
|
|
3
3
|
@justeattakeaway/pie-button:build: transforming...
|
|
4
4
|
@justeattakeaway/pie-button:build: [32m✓[39m 4 modules transformed.
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [Added] `watch` script in `package.json` ([#233](https://github.com/justeattakeaway/pie/pull/233)) by [@LTurns](https://github.com/LTurns)
|
|
8
|
+
|
|
9
|
+
[Added] README content for `yarn watch` script
|
|
10
|
+
|
|
3
11
|
## 0.6.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justeattakeaway/pie-button",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "PIE design system button built using web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/pie-button.js",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"build": "
|
|
8
|
+
"build": "run -T vite build",
|
|
9
|
+
"watch": "run -T vite build --watch",
|
|
9
10
|
"dev": "run -T vite",
|
|
10
11
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
12
|
},
|