This repository was archived by the owner on Mar 4, 2020. It is now read-only.
File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ These changes are required to setup internal tooling and package publishing.
171
171
+ },
172
172
```
173
173
174
- Don't forget to provide a correct directory name, you can also use ` gulp bundle:package ` to bundle your package with UMD.
174
+ You can also use ` gulp bundle:package ` to bundle your package with UMD.
175
175
176
176
#### Create ` tsconfig.json `
177
177
Original file line number Diff line number Diff line change @@ -7,9 +7,12 @@ const fs = require('fs')
7
7
// as lernaAliases append 'src' by default
8
8
const packagePaths = lernaAliases ( { sourceDirectory : false } )
9
9
10
- // Exclude packages which build with just
11
- const projects = Object . values ( packagePaths ) . filter (
12
- packagePath => ! fs . existsSync ( path . join ( packagePath , 'just.config.ts' ) ) ,
10
+ // Exclude packages which build with just, and other special packages
11
+ const excludedPackages = [ '@fluentui/internal-tooling' ]
12
+ const projects = Object . keys ( packagePaths ) . filter (
13
+ packageName =>
14
+ ! excludedPackages . includes ( packageName ) &&
15
+ ! fs . existsSync ( path . join ( packagePaths [ packageName ] , 'just.config.ts' ) ) ,
13
16
)
14
17
15
18
module . exports = {
You can’t perform that action at this time.
0 commit comments