Skip to content

Commit 2adef08

Browse files
Fix: Update new components watch (#912)
* fix Add watch task to components * fix Fix renamed flag Co-authored-by: Kyle Buchanan <[email protected]>
1 parent 82bf8e6 commit 2adef08

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

CHANGELOG-prerelease.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
- [9adb7ce](https://github.com/patternfly/patternfly-elements/commit/9adb7ce4e5a672192ca49af8a7b7f9afb5f56e75) feat: pfe-jump-links (#858)
99
- [b1e69ee](https://github.com/patternfly/patternfly-elements/commit/b1e69ee03f5a56a64c5f57dbc8327e8a2430f0fc) feat: pfe-dropdown (#668)
10-
-[7fe6014](https://github.com/patternfly/patternfly-elements/commit/7fe60149d05ec984e4411a73cf2e1f8185a2df98) fix: pfe-tabs vertical height (#796)
10+
- [7fe6014](https://github.com/patternfly/patternfly-elements/commit/7fe60149d05ec984e4411a73cf2e1f8185a2df98) fix: pfe-tabs vertical height (#796)
11+
- [](https://github.com/patternfly/patternfly-elements/commit/) fix: Add watch task to components generated before infra change
1112

1213
## Prerelease 48 ( 2020-05-19 )
1314

elements/pfe-dropdown/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"scripts": {
2424
"build": "../../node_modules/.bin/gulp && ../../node_modules/.bin/prettier --ignore-path ../../.prettierignore --write '**/*.{js,json}'",
2525
"dev": "../../node_modules/.bin/gulp dev",
26+
"watch": "../../node_modules/.bin/gulp watch",
2627
"test": "../../node_modules/.bin/wct --configFile ../../wct.conf.json elements/pfe-dropdown/test/"
2728
},
2829
"author": {

elements/pfe-jump-links/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"scripts": {
3434
"build": "../../node_modules/.bin/gulp && ../../node_modules/.bin/prettier --ignore-path ../../.prettierignore --write '**/*.{js,json}'",
3535
"dev": "../../node_modules/.bin/gulp dev",
36+
"watch": "../../node_modules/.bin/gulp watch",
3637
"test": "../../node_modules/.bin/wct --configFile ../../wct.conf.json elements/pfe-jump-links/test/"
3738
},
3839
"contributors": [

elements/pfe-sass/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@
1818
"url": "github:patternfly/patternfly-elements",
1919
"directory": "elements/pfe-sass"
2020
},
21+
"main": "./pfe-sass.scss",
2122
"scripts": {
2223
"build": "../../node_modules/.bin/gulp",
23-
"dev": "../../node_modules/.bin/gulp dev"
24+
"dev": "../../node_modules/.bin/gulp dev",
25+
"watch": "../../node_modules/.bin/gulp watch"
2426
},
2527
"contributors": [
2628
{

elements/pfe-styles/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"main": "./dist/pfe-layouts.css",
3333
"scripts": {
3434
"build": "../../node_modules/.bin/gulp build:nojs && ../../node_modules/.bin/prettier --ignore-path ../../.prettierignore --write '**/*.{js,json}'",
35-
"dev": "../../node_modules/.bin/gulp dev:nojs"
35+
"dev": "../../node_modules/.bin/gulp dev:nojs",
36+
"watch": "../../node_modules/.bin/gulp watch"
3637
},
3738
"contributors": [
3839
{

scripts/watch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
CMD="npm run lerna -- run watch --parallel --no-bail --include-filtered-dependencies"
3+
CMD="npm run lerna -- run watch --parallel --no-bail --include-dependencies"
44

55
for el in "$@"; do
66
CMD="$CMD --scope \"*/$el\""

0 commit comments

Comments
 (0)