-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7593 from jrjohnson/monorepo
Migrate frontend into monorepo
- Loading branch information
Showing
1,190 changed files
with
801 additions
and
1,093 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# unconventional js | ||
/blueprints/*/files/ | ||
/packages/*/blueprints/*/files/ | ||
|
||
# compiled output | ||
/dist/ | ||
/packages/*/dist/ | ||
|
||
# misc | ||
/coverage/ | ||
/packages/*/coverage/ | ||
!.* | ||
.*/ | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/packages/*/.node_modules.ember-try/ |
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 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
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 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
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 |
---|---|---|
|
@@ -14,20 +14,25 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.ZORGBORT_TOKEN }} | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
cache: pnpm | ||
- name: Validate releaseType | ||
run: npx in-string-list ${{ github.event.inputs.releaseType }} major,minor,patch | ||
- name: Setup Git | ||
run: | | ||
git config user.name Zorgbort | ||
git config user.email [email protected] | ||
- name: Increment Version | ||
run: pnpm version ${{ github.event.inputs.releaseType }} | ||
working-directory: ./packages/frontend | ||
run: npx versionup --level ${{ github.event.inputs.releaseType }} | ||
- run: | | ||
NEW_TAG=`node -p "require('./packages/frontend/package.json').version"` | ||
echo ${NEW_TAG} | ||
echo "new_tag=${NEW_TAG}" >> $GITHUB_ENV | ||
- name: Tag Version | ||
run: | | ||
git commit -a -m "${{env.new_tag}}" | ||
git tag v${{env.new_tag}} -m "Tagging the v${{env.new_tag}} ${{ github.event.inputs.releaseType }} release" | ||
- name: Push Changes | ||
run: git push --follow-tags |
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,32 +1,21 @@ | ||
# compiled output | ||
/dist/ | ||
/declarations/ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules/ | ||
node_modules/ | ||
|
||
# misc | ||
/.env* | ||
/.pnp* | ||
/.eslintcache | ||
/coverage/ | ||
/npm-debug.log* | ||
/testem.log | ||
/yarn-error.log | ||
|
||
lcov.dat | ||
sauce-example.log | ||
.env* | ||
.pnp* | ||
.pnpm-debug.log | ||
.sass-cache | ||
.eslintcache | ||
coverage/ | ||
npm-debug.log* | ||
yarn-error.log | ||
|
||
# ember-try | ||
/.node_modules.ember-try/ | ||
/npm-shrinkwrap.json.ember-try | ||
/package.json.ember-try | ||
/package-lock.json.ember-try | ||
/yarn.lock.ember-try | ||
|
||
# broccoli-debug | ||
/DEBUG/ | ||
|
||
#browserstack via ember-cli-browserstack | ||
browserstack-local.pid | ||
local.log | ||
/pnpm-lock.ember-try.yaml |
Oops, something went wrong.