Skip to content

Commit f7b9f9f

Browse files
authoredSep 2, 2022
chore: convert project layout to conventional monorepo (#37)
1 parent 635d786 commit f7b9f9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+196
-219
lines changed
 

‎.github/workflows/pr-checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ jobs:
3030
# Compile and build are ran on install
3131

3232
- name: E2E Tests
33-
working-directory: tests
33+
working-directory: packages/e2e
3434
run: pnpm test

‎.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: pnpm install --frozen-lockfile
2929

3030
- name: E2E Tests
31-
working-directory: tests
31+
working-directory: packages/e2e
3232
run: pnpm test
3333

3434
- name: Create Changelog
@@ -37,11 +37,11 @@ jobs:
3737
with:
3838
github-token: ${{ secrets.github_token }}
3939
output-file: "false"
40-
version-file: ./lib/package.json
40+
version-file: ./packages/vite-plugin-web-extension/package.json
4141

4242
- name: Publish to NPM
4343
if: ${{ steps.changelog.outputs.skipped == 'false' }}
44-
working-directory: lib
44+
working-directory: packages/vite-plugin-web-extension
4545
run: |
4646
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc
4747
yarn publish --non-interactive

0 commit comments

Comments
 (0)
Please sign in to comment.