@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.
@@ -6,6 +6,6 @@ computing gzip size...
6
6
  dist/index.js 4.32 kB │ gzip: 1.65 kB
7
7
  
8
8
  [vite:dts] Start generate declaration files...
9
- ✓ built in 19.30s
10
- [vite:dts] Declaration files built in 18529ms.
9
+ ✓ built in 23.55s
10
+ [vite:dts] Declaration files built in 21956ms.
11
11
  
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
- compile using Vite (auto-compiles `dist` on save)
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
File without changes
File without changes
File without changes
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.0",
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
@@ -27,4 +27,4 @@
27
27
  },
28
28
  "include": ["src/**/*.ts","./declaration.d.ts", "test/**/*.ts"],
29
29
  "exclude": []
30
- }
30
+ }