-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pnpm and Github actions. (#263)
* Switch to pnpm and Github actions. * Add changeset * Fix * Try again * Fix * Try this * Fix * Fix * Fix * Try to fix tests * Fix tests * Simplify * yarn -> pnpm * pnpm changes * Changeset fix * Fix * Fix tests
- Loading branch information
1 parent
0861b90
commit 905c0cc
Showing
65 changed files
with
11,372 additions
and
20,069 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Changesets | ||
|
||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works | ||
with multi-package repos, or single-package repos to help you version and publish your code. You can | ||
find the full documentation for it [in our repository](https://github.com/changesets/changesets) | ||
|
||
We have a quick list of common questions to get you started engaging with this project in | ||
[our documentation](https://github.com/changesets/changesets/blob/master/docs/common-questions.md) |
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,9 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "main", | ||
"updateInternalDependencies": "patch" | ||
} |
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,22 @@ | ||
--- | ||
"create-single-spa": minor | ||
"generator-single-spa": minor | ||
"single-spa-web-server-utils": minor | ||
"single-spa-welcome": minor | ||
"webpack-config-single-spa": minor | ||
"webpack-config-single-spa-react": minor | ||
"webpack-config-single-spa-react-ts": minor | ||
"webpack-config-single-spa-ts": minor | ||
--- | ||
|
||
- The create-single-spa project now uses pnpm workspaces and changesets instead of lerna. | ||
- Remove deprecated babel-eslint package in favor of new @babel/eslint-parser package. | ||
- Fix typescript problems in pnpm packages. | ||
- Add support for creation of pnpm packages. Resolves #211. | ||
- Add name field for utility packages. | ||
- No longer depend on beta versions of create-single-spa packages | ||
- Rename template package.jsons to avoid detection by monorepo tooling | ||
- Fix usage of @testing-library/jest-dom in yarn pnp and pnpm | ||
- Switch to Github actions instead of Travis - travis stopped reporting test results | ||
- prettierignore pnpm-lock.yaml files | ||
- Improve support for format and check-format commands on Windows |
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,25 @@ | ||
name: Build and Test | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "15" | ||
- uses: pnpm/[email protected] | ||
with: | ||
version: 5.17.2 | ||
- run: git checkout main && git checkout $GITHUB_SHA | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpx changeset status | ||
- run: pnpm test --recursive | ||
- run: pnpm run lint --recursive |
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 |
---|---|---|
|
@@ -7,4 +7,5 @@ tests/fixtures | |
.DS_Store | ||
*.svelte | ||
*.js.map | ||
coverage | ||
coverage | ||
pnpm-lock.yaml |
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
Oops, something went wrong.