Commit Graph

2389 Commits

Author SHA1 Message Date
Haoqun Jiang eda08fb2a9 v3.9.2 v3.9.2 2019-07-06 19:36:44 +08:00
Haoqun Jiang 01f7f278fa fix: fix eslint path resolution in vue serve (#4246)
fixes #4237

(cherry picked from commit 0ba505ca02)
2019-07-06 19:03:47 +08:00
Min ho Kim fc6e0b70ef chore: fix typos (#4241)
(cherry picked from commit c0aa2bb310)
2019-07-06 18:44:16 +08:00
Haoqun Jiang aafc83ff16 test: fix cliServiceVersion for generator unit tests
(cherry picked from commit 9eadfe1eba)
2019-07-06 18:43:16 +08:00
Haoqun Jiang ea91df2d70 v3.9.1 v3.9.1 2019-07-04 09:02:18 +08:00
Haoqun Jiang 86830acd17 fix: use module directory instead of entry file for eslintPath (#4233)
fixes #4231

(cherry picked from commit 992fe0790d)
2019-07-04 09:00:44 +08:00
Haoqun Jiang f276598ece v3.9.0 v3.9.0 2019-07-03 16:20:20 +08:00
Haoqun Jiang 38136aceef chore: pre release sync 2019-07-03 16:16:33 +08:00
Natalia Tepluhina 51e63cf7ae feat(typescript): add convertJsToTs and allowJs options (#4212)
Close #2676

At the moment when we run `vue add`, Vue CLI renames all `*.js` files to `*.ts`. This PR introduces two new prompts on `@vue/cli-plugin-typescript` late-invokation:

1. `convertJsToTs`: if set to `true`, renames all `.js` files to `.ts`. Otherwise renames only `main.js` -> `main.ts`;
2. `allowJs`: if set to `true`, adds `allowJs: true` to TSConfig compiler options.

(cherry picked from commit 38debb4d14)
2019-07-03 16:13:52 +08:00
Anurag Goel 1f0d66f539 docs: add Render deployment guide (#4217)
* docs: add Render deployment guide

* Update docs/guide/deployment.md

Co-Authored-By: Natalia Tepluhina <NataliaTepluhina@users.noreply.github.com>
(cherry picked from commit ebdcac32d4)
2019-07-03 16:13:40 +08:00
Haoqun Jiang a60612edf3 style: fix lint errors
(cherry picked from commit 273d05fe08)
2019-07-03 16:13:29 +08:00
James George 97fe2c6796 chore: minor refactor (#4205)
eliminate redundancy

(cherry picked from commit 934746da7f)
2019-07-03 16:13:16 +08:00
Haoqun Jiang 113eb65e6d feat: add transformScript to GeneratorAPI (#4188)
(cherry picked from commit 5460ca498f)
2019-07-03 16:12:49 +08:00
Haoqun Jiang 818e5ddccd feat: implement version-related APIs for GeneratorAPI (#4000)
closes #2336

(cherry picked from commit 77092b2223)
2019-07-03 16:12:28 +08:00
aruseni de2f68d96d Correct HTML and Static Assets (#4192)
* Correct HTML and Static Assets

* Update docs/guide/html-and-static-assets.md

Co-Authored-By: Natalia Tepluhina <NataliaTepluhina@users.noreply.github.com>
(cherry picked from commit 80e5d7ff36)
2019-07-03 16:12:07 +08:00
ziga c5f1d20a75 Add heroku deployment guide (#3777)
* Add heroku deployment description

* Link to heroku CLI article

Also split instructions into steps

* Use heroku org buildpack link

Co-Authored-By: Natalia Tepluhina <NataliaTepluhina@users.noreply.github.com>

* Update docs/guide/deployment.md

Co-Authored-By: Natalia Tepluhina <NataliaTepluhina@users.noreply.github.com>
(cherry picked from commit 323acc915e)
2019-06-24 16:52:09 +08:00
Thorsten Lünborg 63da9677a5 docs: mention caveat about missing plugins when in legacy config (#3857)
* docs: mention caveat about missing plugins
when in legacy config
close #3845

* Update browser-compatibility.md

(cherry picked from commit 09ce29f720)
2019-06-24 16:51:59 +08:00
Haoqun Jiang 469c73561d feat: make injectImports & injectRootOptions work for .vue files (#4168)
closes #1702

(cherry picked from commit af25ef75ce)
2019-06-24 16:51:46 +08:00
Leon Liu 082440752d fix: prefer devServer.public as the custom url for browser to open (#4169)
fixes #3747

(cherry picked from commit 76e7c38fc8)
2019-06-24 16:51:26 +08:00
Haoqun Jiang 1bc8006790 chore: move yorkie from cli-service to plugin-eslint & plugin-typescript (#4153)
It is because yorkie is not used anywhere in @vue/cli-service, but only
included for the `lintOn: 'commit'` feature of eslint & typescript
plugin.

Also, a lot of global installation issues are caused by the yorkie
postinstall script. Moving it out of the dependency chain of `@vue/cli`
mitigates such issues.

(cherry picked from commit 271bf395df)
2019-06-24 16:50:58 +08:00
Haoqun Jiang 4f379d4c8f chore: merge branch 'docs' into v3 2019-06-24 16:46:32 +08:00
Piotr Błażejewicz (Peter Blazejewicz) 6fad417985 docs: Update issue template naming Issue Helper (#3171)
This mentions Issue Helper application explicitely as the required entry
point for issue submission.

Thanks!
2019-06-22 10:12:29 +03:00
MoruoFrog 72cb160181 docs: add Chinese translation for the part -- Installing plugin locally (#4165) 2019-06-20 14:48:08 +08:00
Lloyd Atkinson d1b7121102 docs: add tips on creating new project in existing directory (#4162) [ci skip]
In #1509 it is shown that a new project can be created in the an existing directory. This is a common scenario (e.g. creating a repo on GitHub, cloning it, and then running `vue create`). This commit makes this functionality more well known.
2019-06-18 14:50:39 +08:00
Haoqun Jiang 48f2dcdf2b v3.8.4 v3.8.4 2019-06-15 14:23:29 +08:00
Haoqun Jiang ff7218b6a8 fix: fix config merging during vue invoke in Node.js v12 (#4148)
The root cause here is the same as #4095
The failing `loadModule` call will return `undefined` for a js config
read operation, which later caused config being overwritten.

(cherry picked from commit 8283f46d0b)
2019-06-15 14:19:03 +08:00
zrh122 ee9610b6b1 chore: upgrade default-gateway to 5.0.2 (#4150)
fixes #4144

(cherry picked from commit 570588ffb1)
2019-06-15 14:18:50 +08:00
Eric li 0723ceba54 docs(zh): fix typo in mode-and-env.md (#4143) [ci skip] 2019-06-14 14:56:27 +08:00
Haoqun Jiang 3d863485ab chore: refine changelog of v3.8.3 2019-06-13 11:00:14 +08:00
Haoqun Jiang f683ee80a2 chore: merge branch 'v3' into docs 2019-06-13 10:55:54 +08:00
Haoqun Jiang e84de1a0e8 v3.8.3 v3.8.3 2019-06-13 10:44:46 +08:00
Haoqun Jiang 41b4d3799f fix: display correct address when multiple network adapters present (#4083)
fixes #3266

see https://github.com/vuejs/vue-cli/issues/3266#issuecomment-493487325

Thanks to @shenliangv

(cherry picked from commit f3d2c1c133)
2019-06-13 10:32:17 +08:00
Haoqun Jiang bcc53db2e0 fix: fix resolve project local plugin's file path (#4095)
Thanks to @SneakyMax
See https://github.com/vuejs/vue-cli/issues/4014#issuecomment-497993827

(cherry picked from commit 78e1c4cf63)
2019-06-13 10:30:47 +08:00
Sanapoint 顼轩 79e4ba4fb3 fix(cli-service): avoid opening browser twice
fixes #4079

(cherry picked from commit 47d56e998d)
2019-06-13 10:30:08 +08:00
kazuya kawaguchi 9fe3448788 docs: add more explanation at prompts (#3924)
(cherry picked from commit 500dc50205)
2019-06-13 10:30:08 +08:00
kazuya kawaguchi afa6209a75 docs: fix dead link (#3923) [ci skip]
(cherry picked from commit 5f879c4b5d)
2019-06-13 10:30:08 +08:00
Orhan Tozan b092e258bc docs: fix typo (#4096) [ci skip] 2019-06-04 23:58:23 +08:00
Haoqun Jiang 821067f3b0 docs: redirect the links to v3 branch on github (#4074) [ci skip] 2019-05-30 10:46:34 +08:00
Guillaume Chau 1ff22d2a51 fix(task): keep double quotes in script command 2019-05-27 11:44:23 +02:00
Haoqun Jiang 9292fab5d9 docs(zh): 已 -> 被 [ci skip] 2019-05-26 14:20:51 +08:00
山顶洞羊 383a7057c8 docs(zh): some refinements (#3891) [ci skip] 2019-05-26 14:19:17 +08:00
Haoqun Jiang 658084bd72 chore: CHANGELOG for 3.8.x 2019-05-26 00:26:47 +08:00
Haoqun Jiang 10ec5f5e4a v3.8.2 v3.8.2 2019-05-26 00:16:52 +08:00
Haoqun Jiang 3c5bd30827 workflow: force publish @vue/cli package whenever the version marker published
fixes the `Update available` message
2019-05-26 00:14:30 +08:00
Haoqun Jiang ebcc67bc50 v3.8.1 v3.8.1 2019-05-26 00:09:49 +08:00
Haoqun Jiang 19d50b9ea5 Revert "chore: prefer .tsx? files over .jsx? file extensions (#3909)"
This reverts commit c3b6519a11.
2019-05-26 00:08:52 +08:00
Haoqun Jiang d6ce9c2fe9 v3.8.0 v3.8.0 2019-05-25 23:19:23 +08:00
Haoqun Jiang 6d1706ea6f chore: pre release sync 2019-05-25 23:13:00 +08:00
Haoqun Jiang 1ba4b9ccc8 docs: add description of babel plugin usage in TS plugin prompt (#4046)
closes #3206

(cherry picked from commit 82dbbeb07a)
2019-05-25 23:04:56 +08:00
Luiz Victor Linhares Rocha 6996df3d5e feat(HtmlPwaPlugin): adds 'manifestCrossorigin' option (#3939)
close #3933

(cherry picked from commit 49725b4c04)
2019-05-25 22:57:52 +08:00