You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> NOTE: Package managers will treat any SHA in the lock file which is on the branch as valid, and so they will not auto upgrade to the latest. For this reason this is not recommended.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ We adopt [trunk-based development](https://trunkbaseddevelopment.com/) therefore
22
22
23
23
### Good first issue
24
24
25
-
The issues marked with [_Good first issue_](https://github.com/BuilderIO/qwik/issues?q=is%3Aissue+is%3Aopen+label%3A%22COMMUNITY%3A++good+first+issue%22) are a good starting point to familiarize yourself with the project.
25
+
The issues marked with [_Good first issue_](https://github.com/QwikDev/qwik/issues?q=is%3Aissue+is%3Aopen+label%3A%22COMMUNITY%3A++good+first+issue%22) are a good starting point to familiarize yourself with the project.
26
26
27
27
Before solving the problem, please check with the maintainers that the issue is still relevant. Feel free to leave a comment on the issue to show your intention to work on it and prevent other people from unintentionally duplicating your effort.
28
28
@@ -36,7 +36,7 @@ Before submitting a pull request, consider the following guidelines:
36
36
- Run `pnpm fmt` to lint the code.
37
37
- Commit your code with a good commit message [using "Commitizen"](#committing-using-commitizen).
38
38
- Push your branch to GitHub: `git push origin my-branch`
39
-
- In GitHub, send a pull request to `BuilderIO:main`.
39
+
- In GitHub, send a pull request to `QwikDev:main`.
40
40
41
41
> If you aren't sure your PR is ready, open it as a [draft](https://github.blog/2019-02-14-introducing-draft-pull-requests/) to make it clear to the maintainer.
42
42
@@ -307,11 +307,11 @@ This will show an interactive UI to update all dependencies. Be careful about pe
1. Run `pnpm release.prepare`, which will test, lint and build.
345
345
2. Use the interactive UI to select the next version, which will update the `package.json``version` property, add the git change, and start a commit message.
346
346
3. Create a PR with the `package.json` change to merge to `main`.
347
-
4. After the `package.json` with the updated version is in `main`, click the [Run Workflow](https://github.com/BuilderIO/qwik/actions/workflows/ci.yml) button from the "Qwik CI" GitHub Action workflow.
347
+
4. After the `package.json` with the updated version is in `main`, click the [Run Workflow](https://github.com/QwikDev/qwik/actions/workflows/ci.yml) button from the "Qwik CI" GitHub Action workflow.
348
348
5. Select the NPM dist-tag that should be used for this version, then click "Run Workflow".
349
349
6. The GitHub Action will dispatch the workflow to build `@builder.io/qwik`, `@builder.io/qwik-city` and each of their submodules, build WASM and native bindings, and validate the package before publishing to NPM.
350
350
7. If the build is successful and all tests and validation passes, the workflow will automatically publish to NPM, commit a git tag to the repo, and create a GitHub release.
- See [Contributing.md](https://github.com/BuilderIO/qwik/blob/main/CONTRIBUTING.md) for more information on how to build Qwik from the source and contribute!
60
+
- See [Contributing.md](https://github.com/QwikDev/qwik/blob/main/CONTRIBUTING.md) for more information on how to build Qwik from the source and contribute!
Copy file name to clipboardExpand all lines: packages/create-qwik/index.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ function checkNodeVersion() {
44
44
if(Number(minorVersion)<11){
45
45
console.error(
46
46
red(
47
-
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${version}. https://github.com/BuilderIO/qwik/issues/3035`
47
+
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${version}. https://github.com/QwikDev/qwik/issues/3035`
0 commit comments