You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 16, 2024. It is now read-only.
* Update the CONTRIB_FAQ
Adding a step to install `glob` to allow local build
* Update pull-request-lint.yml (#356)
update the pull-request-lint action to accept to accept PR with `doc` in title
Co-authored-by: Vincent Gromakowski <[email protected]>
Copy file name to clipboardExpand all lines: CONTRIB_FAQ.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,15 @@
5
5
### How to setup Projen for Core components?
6
6
7
7
1. Go into `core` folder
8
-
2. Install projen locally. Sometimes `projen` is installed globally and building throwns an error, deleting global `node_modules` folder solves the issue
8
+
2. Install `glob` locally, this is used to find files based on patterns. It is used by a projen task to locate files like `.py` and `.java` to package them part of `lib`
9
+
`npm install glob`
10
+
3. Install projen locally. Sometimes `projen` is installed globally and building throwns an error, deleting global `node_modules` folder solves the issue
0 commit comments