-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ lint, test, build; + contactInfo, etc. required in placeholder helpers; + more types; + examples 🍱 Updated logo 📝 Play with links to repo files v3.0.7 v3.0.8 📝 Provide better titles in the readmes We're currently on 2.0.0. Aiming at 3.0.0 📝 Help contributors aroud lerna and yarn workspaces
- Loading branch information
Showing
212 changed files
with
10,704 additions
and
6,785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
coverage | ||
dist | ||
jest.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
on: | ||
push: | ||
branches: | ||
- feature/split | ||
|
||
name: monorepo | ||
|
||
jobs: | ||
do-de-stuff: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
- run: yarn | ||
- run: ./node_modules/.bin/lerna run lint | ||
- run: ./node_modules/.bin/lerna run test -- --coverage | ||
- name: Coveralls (signpdf) | ||
uses: coverallsapp/github-action@master | ||
with: | ||
parallel: true | ||
flag-name: signpdf | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-path: packages/signpdf | ||
path-to-lcov: packages/signpdf/coverage/lcov.info | ||
- name: Coveralls (utils) | ||
uses: coverallsapp/github-action@master | ||
with: | ||
parallel: true | ||
flag-name: utils | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-path: packages/utils | ||
path-to-lcov: packages/utils/coverage/lcov.info | ||
- name: Coveralls (placeholder-pdfkit010) | ||
uses: coverallsapp/github-action@master | ||
with: | ||
parallel: true | ||
flag-name: placeholder-pdfkit010 | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-path: packages/placeholder-pdfkit010 | ||
path-to-lcov: packages/placeholder-pdfkit010/coverage/lcov.info | ||
- name: Coveralls (placeholder-plain) | ||
uses: coverallsapp/github-action@master | ||
with: | ||
parallel: true | ||
flag-name: placeholder-plain | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
base-path: packages/placeholder-plain | ||
path-to-lcov: packages/placeholder-plain/coverage/lcov.info | ||
- name: Close Coveralls | ||
uses: coverallsapp/github-action@master | ||
with: | ||
parallel-finished: true | ||
carryforward: "signpdf,utils,placeholder-pdfkit010,placeholder-plain" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ yarn-error.log* | |
|
||
coverage | ||
.coveralls.yml | ||
packages/examples/output | ||
|
||
node_modules/ | ||
.npm | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# RELEASE CHECKLIST | ||
|
||
[ ] yarn build | ||
[ ] ./node_modules/.bin/lerna run build | ||
[ ] Update CHANGELOG | ||
[ ] Update version in package.json | ||
[ ] ./node_modules/.bin/lerna publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "12" | ||
} | ||
} | ||
] | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.