[go: nahoru, domu]

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

added message #7405

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
7111fcf
chore: add `scss` to LoaderOptions interface (#7039)
hiblacker Mar 14, 2022
4c679ec
fix(cli-service): devServer proxy should be optional (#7044)
ntnyq Mar 14, 2022
37ef809
fix: lock node-ipc version
haoqunjiang Mar 15, 2022
a859b1f
v5.0.2
haoqunjiang Mar 15, 2022
b0d9316
fix(typo): should lock version
haoqunjiang Mar 15, 2022
dd53f26
v5.0.3
haoqunjiang Mar 15, 2022
75826d6
fix: replace `node-ipc` with `@achrinza/node-ipc` to further secure t…
haoqunjiang Mar 22, 2022
c5cfefb
Better handling of `publicPath: 'auto'` (#7005)
AndreiSoroka Mar 22, 2022
ca97fc2
v5.0.4
haoqunjiang Mar 22, 2022
9c74b30
docs: update changelog
haoqunjiang Mar 22, 2022
a3ccc3d
docs: add 4.5.17 changelog
haoqunjiang Mar 23, 2022
dded73a
fix: windows vue.config.mjs support (#7023)
xiaoxiangmoe Mar 31, 2022
6035629
chore: remove redundant yorkie dependency in typescript plugin
haoqunjiang Apr 6, 2022
940e436
fix: update `@achrinza/node-ipc` to support non-LTS Node.js versions
haoqunjiang Apr 6, 2022
ce97e62
fix: add XMLSerializer to the global scope (#7101)
maerteijn Apr 13, 2022
00fd2b6
chore: update the @achrinza/node-ipc to support Node.js 18
haoqunjiang Jun 14, 2022
1452cd3
feat: update cypress to 9.x
haoqunjiang Jun 14, 2022
d5bb358
chore: update lockfile
haoqunjiang Jun 14, 2022
b2b07a5
chore: run yarn-audit-fix
haoqunjiang Jun 15, 2022
697bb44
fix: should correctly resolve cypress bin path for Cypress 10
haoqunjiang Jun 15, 2022
619965b
docs: fix 404 links
haoqunjiang Jun 15, 2022
27dba1a
fix: eliminate calling deprecated function in cli-plugin-e2e-cypress …
blzsaa Jun 16, 2022
64446e0
feat(upgrade): prevent changing the structure of package.json file du…
blzsaa Jun 16, 2022
98c66c9
v5.0.5
haoqunjiang Jun 16, 2022
a648958
fix: compatibility with Vue 2.7
haoqunjiang Jun 16, 2022
fcf27e3
fixup! fix: compatibility with Vue 2.7
haoqunjiang Jun 16, 2022
6b163f2
chore: fix lint errors
haoqunjiang Jun 16, 2022
ef08a08
v5.0.6
haoqunjiang Jun 16, 2022
bddd64d
fix: optimize the judgment on whether HTTPS has been set in options (…
backrunner Jul 4, 2022
558dea2
fix: support `devServer.server` option, avoid deprecation warning
haoqunjiang Jul 4, 2022
beffe8a
fix: allow disabling progress plugin via `devServer.client.progress`
haoqunjiang Jul 4, 2022
23fa20f
chore: upgrade to apollo-server-express 3.x (#7210)
haoqunjiang Jul 5, 2022
6f9b6ec
chore: update fallback chromedriver version
haoqunjiang Jul 5, 2022
4a0655f
v5.0.7
haoqunjiang Jul 5, 2022
a5a893e
chore: update changelog
haoqunjiang Jul 5, 2022
07052c4
fix: Vue CLI UI graphql subscription server error
haoqunjiang Jul 7, 2022
0260e4d
fix: add devServer.server.type to useHttps judgement (#7222)
backrunner Jul 7, 2022
4e024b7
ci: bump appveyor node version
haoqunjiang Jul 7, 2022
b154dbd
v5.0.8
haoqunjiang Jul 7, 2022
bc1c0bc
chore: update readme [ci skip]
yyx990803 Aug 17, 2022
95ad425
docs: bump vitepress
yyx990803 Aug 17, 2022
7c0134e
docs: add recommendation for create-vue in docs
yyx990803 Aug 17, 2022
248f770
docs: simplify message wording + message on landing page
yyx990803 Aug 17, 2022
e636817
docs: revert vitepress version
yyx990803 Aug 17, 2022
ea4c98a
fix: pnpm v7 install error (#7265)
lvqq Sep 4, 2022
f0f254e
chore(deps): bump loader-utils from 1.4.0 to 1.4.1 (#7324)
dependabot[bot] Nov 9, 2022
cfde3e7
Update README.md
kenzo104 Jul 5, 2023
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
Prev Previous commit
Next Next commit
fixup! fix: compatibility with Vue 2.7
  • Loading branch information
haoqunjiang committed Jun 16, 2022
commit fcf27e350e743a2fbc99d4c021dcd49e43cac929
10 changes: 6 additions & 4 deletions packages/@vue/cli-service/lib/config/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,19 @@ module.exports = (api, options) => {

if (vueMajor === 2) {
// for Vue 2 projects
const vueLoaderCacheConfig = api.genCacheConfig('vue-loader', {
const partialIdentifier = {
'vue-loader': require('@vue/vue-loader-v15/package.json').version,
'@vue/component-compiler-utils': require('@vue/component-compiler-utils/package.json').version,
})
'@vue/component-compiler-utils': require('@vue/component-compiler-utils/package.json').version
}

try {
vueLoaderCacheConfig['vue-template-compiler'] = require('vue-template-compiler/package.json').version
partialIdentifier['vue-template-compiler'] = require('vue-template-compiler/package.json').version
} catch (e) {
// For Vue 2.7 projects, `vue-template-compiler` is not required
}

const vueLoaderCacheConfig = api.genCacheConfig('vue-loader', partialIdentifier)

webpackConfig.resolve
.alias
.set(
Expand Down