@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.
@@ -1,4 +1,4 @@
1
- @justeattakeaway/pie-button:build: cache hit, replaying output 95e9489059d5a6b7
1
+ @justeattakeaway/pie-button:build: cache hit, replaying output d804f716cd573de0
2
2
  @justeattakeaway/pie-button:build: vite v4.0.4 building for production...
3
3
  @justeattakeaway/pie-button:build: transforming...
4
4
  @justeattakeaway/pie-button:build: ✓ 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
@@ -15,6 +15,11 @@ cd packages/components/pie-button
15
15
  yarn build
16
16
  ```
17
17
 
18
+ compile using Vite (auto-compiles `dist` on save)
19
+ ```
20
+ yarn watch
21
+ ```
22
+
18
23
  Local dev server using Vite (with hot module reloading)
19
24
  ```
20
25
  yarn dev
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-button",
3
- "version": "0.6.0",
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": "npx tsc && run -T vite 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
  },