Skip to content

Commit 4891dc4

Browse files
committed
feat(*): ensure all packages have build script for types
refs: INSTUI-2379 TEST PLAN: - `yarn bootstrap` should complete without any errors - `git status` should show a clean working directory and no modified files after the build command has been run Change-Id: I3049dfa563c8075791389edb1b526f4a6654c81f Reviewed-on: https://gerrit.instructure.com/c/instructure-ui/+/216940 Reviewed-by: Pam Hiett <phiett@instructure.com> Product-Review: Pam Hiett <phiett@instructure.com> Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com> QA-Review: Steve Jensen <sejensen@instructure.com> Visual-Regression-Test: Steve Jensen <sejensen@instructure.com>
1 parent ae9ce15 commit 4891dc4

File tree

8 files changed

+12
-4
lines changed

8 files changed

+12
-4
lines changed

packages/ui-dialog/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
lib/
22
.babel-cache/
33
es/
4+
types/

packages/ui-dialog/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"lint:fix": "ui-test --lint --fix",
1717
"clean": "ui-build --clean",
1818
"build": "ui-build",
19-
"build:watch": "ui-build --watch"
19+
"build:watch": "ui-build --watch",
20+
"build:types": "ui-scripts --types"
2021
},
2122
"license": "MIT",
2223
"dependencies": {

packages/ui-popover/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
lib/
22
.babel-cache/
33
es/
4+
types/

packages/ui-popover/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"lint:fix": "ui-test --lint --fix",
1717
"clean": "ui-build --clean",
1818
"build": "ui-build",
19-
"build:watch": "ui-build --watch"
19+
"build:watch": "ui-build --watch",
20+
"build:types": "ui-scripts --types"
2021
},
2122
"license": "MIT",
2223
"dependencies": {

packages/ui-position/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
lib/
22
.babel-cache/
33
es/
4+
types/

packages/ui-position/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"lint:fix": "ui-test --lint --fix",
1717
"clean": "ui-build --clean",
1818
"build": "ui-build",
19-
"build:watch": "ui-build --watch"
19+
"build:watch": "ui-build --watch",
20+
"build:types": "ui-scripts --types"
2021
},
2122
"license": "MIT",
2223
"dependencies": {

packages/ui-tooltip/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
lib/
22
.babel-cache/
33
es/
4+
types/

packages/ui-tooltip/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"lint:fix": "ui-test --lint --fix",
1717
"clean": "ui-build --clean",
1818
"build": "ui-build",
19-
"build:watch": "ui-build --watch"
19+
"build:watch": "ui-build --watch",
20+
"build:types": "ui-scripts --types"
2021
},
2122
"license": "MIT",
2223
"dependencies": {

0 commit comments

Comments
 (0)