Commit Graph

219 Commits

Author SHA1 Message Date
renovate[bot] 90be6e9c87
chore(deps): update autofix-ci/action digest to bee19d7 (#9625)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-18 07:13:04 +08:00
三咲智子 Kevin Deng 269879ef96
ci: temp remove some ci 2023-11-17 03:01:53 +08:00
Eduardo San Martin Morote 32bdc5d190
chore: typo [skip ci] 2023-11-03 17:14:07 +01:00
Evan You 4a88b71044 chore: add maintenance handbook 2023-11-03 17:09:20 +08:00
renovate[bot] 01af7d2f82
chore(deps): update actions/setup-node action to v4 (#9535)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-02 20:51:23 +08:00
Tycho edf2572615
chore: fix typo (#9306) 2023-10-26 17:08:37 +08:00
三咲智子 Kevin Deng 6021d0253e
chore: upgrade deps (#9443) 2023-10-21 16:59:26 +08:00
丶远方 a44c2b835e
ci: use `.node-version` to maintain node version (#8986) 2023-10-20 15:41:01 +08:00
Evan You beb487ef52 chore: bump min node version requirement for development 2023-10-20 10:44:10 +08:00
renovate[bot] 51dfa6517e
chore(deps): update autofix-ci/action digest to d3e5915 (#9406)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-20 10:41:58 +08:00
Evan You ec5b36c770 chore: replace chalk with picocolors 2023-10-20 10:23:18 +08:00
Haoqun Jiang b8fc18c0b2
ci: add a canary release workflow for next minor (#9265) 2023-09-22 15:51:11 +08:00
renovate[bot] 9944b50456
chore(deps): update actions/checkout action to v4 (#9156)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-06 16:08:44 -05:00
renovate[bot] 323d2cebba
chore(deps): update actions/upload-artifact action to v3 (#9153)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-06 16:05:19 -05:00
renovate[bot] ca00cf245e
chore(deps): update test (major) (#9148)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
2023-09-06 12:12:48 -05:00
renovate[bot] 8cb147cc18
chore(deps): update dependency serve to v14 (#9146)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
2023-09-06 05:31:10 -05:00
三咲智子 Kevin Deng db99b95d16
chore: configure renovate (#8091) 2023-09-06 04:57:06 -05:00
Alex 5c137c9c8f
workflow: add lock-closed-issues (#8970) 2023-09-05 15:23:00 +08:00
三咲智子 Kevin Deng 8adb2ca537
ci: add autofix for pr (#9112) 2023-09-05 15:22:39 +08:00
Evan You 8998afa427 chore: redirect feature requests to rfc discussion 2023-08-30 15:16:42 +08:00
三咲智子 Kevin Deng e7d5a41758
ci: fix get previous size data 2023-08-21 15:43:49 +08:00
三咲智子 Kevin Deng 61c3c8e86a
ci: fix size report permissions 2023-08-21 13:10:41 +08:00
三咲智子 Kevin Deng 1b56405299
ci: improved size report (#8992) 2023-08-21 11:33:51 +08:00
三咲智子 Kevin Deng bd08f057fc
ci: enforce format check 2023-08-14 19:43:55 +08:00
Shyam Chen a3dddd6205
docs: correct pnpm version (#8807) 2023-07-19 10:06:40 +08:00
Travis 1f83020a2b
chore: fix contributors link (#7654) 2023-06-13 05:16:48 +08:00
Domantas Bazys 1941a25a42
chore: fix typo (#7692) 2023-06-10 17:11:57 +08:00
Evan You 01f43c1741
ci: setup windows ci for compiler and SSR tests (#8143) 2023-04-24 11:31:13 +08:00
Evan You e40755d195 workflow: use environment for canary release workflow 2023-04-06 17:35:45 +08:00
Cloyd Lau cbe3d42ed3
chore: fix wrong placeholder in issue template (#7918) [ci skip] 2023-04-06 17:14:16 +08:00
Evan You 593da4069a chore: update playground url 2023-04-06 12:42:07 +08:00
Evan You ea5bf1235d ci: avoid duplicated ci runs on self-repo pull requests 2023-03-27 18:32:45 +08:00
Haoqun Jiang 29852dfa9c
ci: release canary versions every week (#7860)
* build: support `--canary` flag for canary releases

Also adds `--skip-git` and `--skip-prompts` flags as they would be
useful in ecosystem-ci

* ci: add a workflow to do canary releases every Monday

* build: allow manually releasing patch canary versions

* chore: don't bother updating the README

As far as I know, only Knighly modifies the README for nightly builds:
<https://www.npmjs.com/package/@knightly/vue>

Nuxt, React, and TypeScript all keep the README as-is for edge releases.

So I think we can avoid the complexity here.

* refactor: checkCIStatus -> getCIResult

* chore: keep the canary major in sync with the repo major

* fix: fix version rewriting

* fix: `@vue/compat` is also a core package

The directory name format of `@vue/compat` is different from other core packages, so it needs to be handled separately.

Missing it didn't cause any problems because the `isCorePackage`
function is only used to test dependency names, and `@vue/compat` isn't
used as a dependency anywhere.

But it's good to fix it anyway.
2023-03-17 15:37:29 +08:00
Haoqun Jiang 1d09540798
ci: add a ecosystem-ci-trigger workflow (#7618) 2023-02-10 19:02:41 +08:00
Evan You 20ea62da3c chore: use type: "module" 2023-02-03 18:12:56 +08:00
Evan You 78a52ef3fe docs: document git hooks [ci skip] 2023-02-03 18:03:33 +08:00
Evan You 7a0a6658c6 docs: update contributing guide 2023-02-03 17:47:34 +08:00
vaakian X 261fc12443
chore: fix broken link (#7589)
closes https://github.com/vuejs/core/issues/7588
2023-01-28 07:00:04 +08:00
Evan You f3e4f038bf ci: move chrome cache restore to before pnpm install 2022-11-14 19:23:51 +08:00
Evan You 7b59f2a012 ci: skip chromium download in jobs that do not need it 2022-11-14 19:21:58 +08:00
Evan You bcc76e9395 ci: cache chromium binary 2022-11-14 18:47:08 +08:00
Evan You 6524805c45 docs: add notes on more scripts in contribution guide 2022-11-14 10:22:43 +08:00
Flávio Reis a52141a62b
docs(contributing): change dependencies graph to mermaid (#6901) 2022-11-13 20:48:58 -05:00
Evan You f793faaeb7 chore: remove reference to tsd [ci skip]
close #7077
2022-11-10 15:10:47 +08:00
三咲智子 Kevin Deng dc9f99426d
workflow: switch to simple-git-hooks (#7069) 2022-11-09 08:14:59 -05:00
三咲智子 Kevin Deng 28a4fc040e
ci: upgrade node to 18 (#6983) 2022-11-08 09:13:45 -05:00
Evan You b3916db82d ci: disable format-check on ci
this causes too many unintended fails on PR merges
the task should just be manually run periodically
2022-11-08 14:31:45 +08:00
三咲智子 (Kevin) bbb66d7ac7
ci: check prettier format (#6830) 2022-10-28 09:39:34 +08:00
Evan You 830454ae56 ci: fix pnpm action version 2022-10-27 08:58:38 +08:00
Evan You e3bc21f39a ci: bump actions versions 2022-10-26 18:32:34 +08:00
Evan You c454aa5cd0 chore: more pr tips in contribution guide [ci skip] 2022-10-05 15:48:57 +08:00
Alex 05c7b0d180
ci: GitHub workflows security hardening (#6743) 2022-09-27 22:36:47 -04:00
Kid 96ba71d0cf
chore: fix typos (#6708) 2022-09-24 15:13:39 +08:00
Evan You 80de1adb36 chore: require version in bug report [ci skip] 2022-05-20 23:21:01 +08:00
Anthony Fu 72ac937f35
chore: use `packageManager` field (#5911) 2022-05-18 19:29:26 -04:00
Evan You fd2aa120a1 chore: add note to pr guidelines [ci skip] 2022-05-18 10:52:07 +08:00
neilnaveen 94a18197f3
workflow: update github actions via dependabot (#5656) 2022-05-13 04:26:30 -04:00
patak cb69208a87
chore: issues forms (#5145) 2022-05-11 21:31:12 -04:00
Evan You 54753c3401 chore: update branch references 2022-05-12 08:45:06 +08:00
Evan You c44b3fc2ff chore: update ci step name [ci skip] 2022-05-12 08:38:48 +08:00
Evan You b5aa768733 workflow: upgrade to pnpm 7 2022-05-12 08:33:17 +08:00
Evan You 1414f17490 ci: run lint during ci 2022-05-10 10:47:32 +08:00
kuanglingxi 29d58f3124
docs(contributing): change node version (#5382)
* docs(contributing): keep documentation and engines in sync [ci skip]
2022-02-14 19:34:02 +08:00
Evan You 54c525f289 chore: remove patreon from funding.yml [ci skip] 2022-02-12 16:43:55 +08:00
Evan You ae4b0783d7 chore: update repo references 2022-01-18 16:43:59 +08:00
JayFate 8cbfe092cf
docs(contributing): missing structure info for compiler-sfc (#3559) [ci skip] 2022-01-17 18:34:47 -05:00
Evan You 92fcb9db05 workflow: use esbuild for dev scripts 2022-01-14 16:21:50 +08:00
Cédric Exbrayat 1149e825de
chore: fix ci build (#4958) 2021-11-17 17:23:59 +01:00
Sepush 4dd8588408
ci: update checkout version (#4881) 2021-11-02 01:28:17 -04:00
Alex Vilchis f8221682fe
chores: fix tsconfig property name reference in contribution guide (#4775) [ci skip] 2021-10-09 18:23:09 -04:00
Evan You 61c5fbd3e3
workflow: move to pnpm (#4766) 2021-10-08 14:23:30 -04:00
zhoulixiang ca17162e37
docs: update link to nodejs.org to use https (#4700) 2021-09-29 11:59:17 +02:00
Evan You f27a98becc ci: improve size script 2021-09-23 14:46:16 -04:00
Evan You 7915a593ea ci: use frozen lockfile 2021-09-20 12:43:06 -04:00
Evan You 6e7e57fa9b ci: update size check script 2021-09-20 12:40:05 -04:00
Evan You b39dc52fc8 ci: update ci script 2021-09-20 12:26:16 -04:00
Evan You f243d2fbdc ci: lock node version to 16.8 2021-09-08 18:51:19 -04:00
Evan You e019b14add ci: set node to 16 2021-07-29 12:35:35 -04:00
Evan You aef70de1cb ci: move to github actions / remove circleci config 2021-05-07 10:00:12 -04:00
Evan You 372f152d23 ci: improve transition tests ci stability 2021-05-07 09:56:31 -04:00
Evan You 4bb08df0c9 ci: test github actions 2021-05-07 09:39:13 -04:00
dependabot-preview[bot] 6c0460a67e
Upgrade to GitHub-native Dependabot (#3694)
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2021-05-06 18:51:33 -04:00
Alan Wang 6b0a549725
docs(contributing): missing link to Scripts section (#2868)
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
2021-02-03 19:10:47 +01:00
Eduardo San Martin Morote ce0eca8ab1
ci: fix size check script (#2895) 2020-12-28 10:50:20 +01:00
Eduardo San Martin Morote 8e5cdc0d0e
ci: add size check on push (#2392) 2020-10-19 17:19:49 -04:00
Eduardo San Martin Morote 6962896465
ci: add size check integration (#2369) 2020-10-15 11:37:00 -04:00
Evan You 60da878d58 chore: add github sponsors to funding.yml [ci skip] 2020-10-05 12:00:41 -04:00
Jonathan Wood 2771bc750b
docs: add indefinite article to bug fix sentence (#1878) 2020-08-17 17:21:01 +02:00
Pick b772bba558
feat(types/reactivity): use `DeepReadonly` type for `readonly` return type (#1462)
close #1452
2020-07-15 09:27:21 -04:00
Evan You 4c542d5033 chore: adjust yarn warning [ci skip] 2020-06-09 17:39:48 -04:00
Eduardo San Martin Morote 4d9b651d82
ci: add changelog link in releases (#1123) 2020-05-06 11:07:46 -04:00
Evan You 311eb08334 build: auto publish github release on tag push 2020-04-27 12:26:22 -04:00
Dennis Herzberg 4c22be556e
chore: add issue template config (#1057) [ci skip] 2020-04-26 10:57:40 -04:00
Evan You 3e60288a6d chore: update contributing guide [ci skip] 2020-04-22 17:14:08 -04:00
Evan You bcb2a9b4a6 build: make @vue/shared public
This avoids it being inlined multiple times in esm bundler builds
2020-02-29 22:04:42 -05:00
Praveen Puglia 1855a7f409
chore: fixes a small typo and prettifies the document (#778) 2020-02-26 10:11:49 -05:00
James George e6b0006b40 chore: add GitHub sponsor button config (#708) [ci skip] 2020-02-09 15:45:30 -05:00
Evan You 27e2e482e9 chore: update contributing guide [ci skip] 2020-02-05 21:27:03 -05:00
Evan You 78beed2574 build: support source map in build and dev scripts 2020-01-28 10:28:48 -05:00
Turtuvshin Byambaa 7c90aa5539 chore: fix typo in contributing guide (#589) 2020-01-07 11:33:22 +01:00
Evan You 7cab6ccceb chore: add issue template [ci skip] 2020-01-02 17:41:03 -05:00
Yingya Zhang 9996d7acbc chore: fix typo api.json (#565) [ci skip] 2019-12-30 11:23:25 -05:00
Yingya Zhang 08de7f1085 chore: fix typo jest moduleNameMapper (#566) 2019-12-26 11:27:25 +01:00
Evan You 6614f21bf4 chore: further edit formats and include it in vue package readme [ci skip] 2019-12-23 10:28:40 -05:00
Evan You 51764d3195 chore: more details on build formats [ci skip] 2019-12-23 10:12:42 -05:00
Evan You 4e91b1328d chore: add package dependency graph 2019-12-12 21:22:29 -05:00
Evan You 136ab753b3 build: adjust esm formats 2019-12-10 22:14:02 -05:00
Evan You cd5ba7cfcc build: remove lerna 2019-12-10 18:24:59 -05:00
Rustin ac51f129ea docs: add more details about automatic validation and formatting (#472) 2019-12-02 11:45:33 -05:00
Evan You dfc7c0f12a refactor: adjust internal vnode types + more dts tests 2019-11-04 18:38:55 -05:00
limichange f56a159ea5 chore: fix typo [ci skip] (#413) 2019-10-30 11:48:39 -04:00
Evan You 462d5c3477 chore: mention coverage and template-explorer in contribution guide 2019-10-10 22:11:44 -04:00
vityas-off 7c4eea6048 docs: add missing --all argument to contributing.md (#121) 2019-10-05 22:35:15 -04:00
Swapnil Agarwal 0fe8801782 docs: fix 'commit message convention' link (#95) 2019-10-05 10:38:42 -04:00
Evan You e82db471b3 ci: disable github actions for now (lacks dep caching) 2019-09-14 15:09:46 -04:00
Evan You aa7cdd8de2
[ci] setup github actions 2019-09-14 10:33:30 -04:00
Evan You 1b6f0992d9 chore: document build --types 2019-09-03 12:22:56 -04:00
Evan You b15569d03b chore: basic readme 2019-08-24 22:37:05 -04:00
Evan You 549e1e1514 chore: contribution guide 2019-08-23 17:22:37 -04:00