Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: hoist devDependencies and migrate to workspaces + rollup #2097

Draft
wants to merge 34 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9be73cf
chore: remove unnecessary form-urlencoded dependency
ThisIsMissEm Apr 22, 2022
f50a5b5
chore: fix broken inter-package dependencies
ThisIsMissEm Apr 22, 2022
70182b4
chore: exclude examples from lerna bootstrap
ThisIsMissEm Apr 23, 2022
37a5a4a
chore: remove husky
ThisIsMissEm Apr 23, 2022
28428e0
chore: fix code coverage reports to use text reporter
ThisIsMissEm Apr 23, 2022
a426d27
WIP
ThisIsMissEm Apr 23, 2022
b064245
WIP: canary
ThisIsMissEm Apr 23, 2022
4df54b0
fix browser builds
ThisIsMissEm Apr 23, 2022
da89655
prerelease browser builds
ThisIsMissEm Apr 23, 2022
aa4ace4
WIP
ThisIsMissEm Apr 23, 2022
fdb63a5
WIP
ThisIsMissEm Apr 23, 2022
a7d8f8f
WIP
ThisIsMissEm Apr 23, 2022
ec06f6b
migrate browser to rollup
ThisIsMissEm Apr 23, 2022
189b558
pre 1.11.8-alpha.2
ThisIsMissEm Apr 23, 2022
0453e62
fix types & package files
ThisIsMissEm Apr 23, 2022
27ad562
hoist devtools
ThisIsMissEm Apr 23, 2022
758a1c1
pre 1.11.9-alpha.0
ThisIsMissEm Apr 23, 2022
a8c642b
fix browser crypto
ThisIsMissEm Apr 23, 2022
f6eabf0
1.11.9-alpha.1
ThisIsMissEm Apr 23, 2022
3446a9a
attempt 2
ThisIsMissEm Apr 23, 2022
d9f4952
1.11.9-alpha.2
ThisIsMissEm Apr 23, 2022
efdd6c8
fix browser rollup
ThisIsMissEm Apr 23, 2022
8830876
fix browser rollup
ThisIsMissEm Apr 23, 2022
68d53b6
try browser bundle
ThisIsMissEm Apr 23, 2022
4622d08
keep trying
ThisIsMissEm Apr 23, 2022
85933f8
WIP
ThisIsMissEm Apr 23, 2022
d07fe76
WIP
ThisIsMissEm Apr 23, 2022
7691f0e
1.11.9-alpha.3
ThisIsMissEm Apr 23, 2022
6b5e3c3
WIP
ThisIsMissEm Apr 23, 2022
90317c8
1.11.9-alpha.4
ThisIsMissEm Apr 23, 2022
42aa09b
build core with rollup too
ThisIsMissEm Apr 23, 2022
7d1278e
1.11.9-alpha.5
ThisIsMissEm Apr 23, 2022
bc6857c
chore: disable CD workflows for now
ThisIsMissEm Apr 23, 2022
bcd52c5
WIP
ThisIsMissEm Apr 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 14.x, 12.x]
node-version: [16.x, 14.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run test
- run: npm run build --workspaces
- run: npm test --workspaces
4 changes: 2 additions & 2 deletions .github/workflows/e2e-browser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run bootstrap -- --ci
- run: npm run build
- run: npm ci --workspaces
- run: npm run build --workspaces
- name: Install e2e tests dependencies
run: npx playwright install --with-deps
working-directory: e2e/browser/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
path: node_modules
key: ${{ runner.os }}-node${{ runner.node-version }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- run: npm ci
- run: npm run bootstrap -- --ci
- run: npm run build
- run: npm ci --workspaces
- run: npm run build --workspaces
- run: npm run test:e2e:node
env:
E2E_TEST_POD: ${{ secrets.E2E_TEST_POD }}
Expand Down
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading