Clark Du
5bdd0dd8a5
fix: undefined host in listening on message ( #3595 )
...
Fix error in #3529
2018-07-26 17:38:15 +01:00
Blake Kostner
ee95461cb1
resolve server listen details with server.address() ( #3529 )
...
* resolve server listen details with server.address()
* remove empty whitespace
* overwrite host and port in server listen method
* no let
2018-07-26 15:52:00 +02:00
Alexander Lichter
a37772f0f8
fix(csp): remove duplicate sha-256 hashes ( #3574 )
2018-07-26 15:48:28 +02:00
Clark Du
a0ca257263
fix: lost context in closures
2018-07-25 17:10:56 +01:00
Alexander Lichter
65d318d475
refactor: remove unused variables ( #3576 )
2018-07-25 09:00:21 +01:00
Dmitry Molotkov
5280e86dfc
generate source map for uglify if devtool === #source-map ( #3451 )
...
* generate source map for uglify if devtool === #source-map
* support different variants of source-map option
* change source map to be likes in official webpack repo
https://github.com/webpack/webpack/blob/master/lib/WebpackOptionsDefaulter.js#L294
* small code cleanup
2018-07-24 13:01:51 +02:00
Alexander Lichter
e814b34508
feat: enable silent config when not in debug mode ( #3564 )
2018-07-23 08:59:41 +01:00
Dmitry Molotkov
87f1f312be
ignore *.spec.* test files ( #3528 )
...
Add ignore for *.spec.* files in addition to *.test.*
PS the error that can happen when try to run dev without ignore and with spec js is totally confusing and gives zero lead on what happens.
https://gist.github.com/aldarund/8542b2e477956827d9195d0f6d173a3b
Only during build there was a error printed with a proper stacktrace that was lead to my test file
2018-07-21 17:33:41 +01:00
Alexander Lichter
095404a251
refactor: change function calls when arity is one ( #3563 )
2018-07-20 16:42:31 +01:00
GU Yiling
b5f6ed1332
fix: inject scrollBehavior in a more tolerant way ( #3560 )
...
Currently we cannot define `scrollBehavior` like:
```js
scrollBehavior () { // ← we can have space before the parenthesis
// ...
}
```
Fixed this by using a `RegExp` to be more tolerant.
2018-07-20 16:26:03 +01:00
Dmitry Molotkov
b0d2f674c8
exit code 1 in case of failed builds ( #3535 )
...
Fixes https://github.com/nuxt/nuxt.js/issues/3534
2018-07-20 16:12:29 +01:00
Clark Du
dfef5252de
Merge remote-tracking branch 'origin/master' into dev
2018-07-19 12:26:52 +01:00
Clark Du
e2296061b0
misc: fix typos
2018-07-18 15:39:48 +01:00
Clark Du
9afd6a55dd
refactor: obselete AggressiveSplittingPlugin
2018-07-17 12:13:06 +01:00
Clark Du
22a53464a7
fix: allow quotes in messages ( #3525 )
2018-07-12 21:45:14 +01:00
HG
7c852029aa
Merge pull request #3461 from ktsn/fix-scroll-behavior
...
fix: ensure emit triggerScroll event after scrollBehavior is called
2018-07-12 14:24:13 +01:00
Blake Kostner
842cc19431
fix(nuxt): try to resolve node_modules before alias logic ( #3505 )
...
Fixes issues with @<organization>/<package> for plugins and more.
2018-07-06 18:57:21 +04:30
Clark Du
d98c98360a
refactor: smiplify csp
2018-07-01 23:43:30 +04:30
Clark Du
749da85b90
misc: remove unused cache config ( #3490 )
2018-07-01 23:40:44 +04:30
ktsn
bf6416ae62
fix: ensure emit triggerScroll event after scrollBehavior is called
2018-06-21 15:22:52 +09:00
Clark Du
1958ba8953
chore: remove to-do which has been done
2018-06-13 09:41:18 +01:00
zyxd
3b2ed038da
fix: wait for core to be ready before listen ( #3407 )
2018-06-06 21:22:08 +04:30
Igor
937ce612c7
feat(csr): support custom Vue.config.errorHandler ( #3337 )
2018-06-02 19:16:57 +04:30
Tatsuyuki Ishi
0db21b1f54
fix: require babel-preset-vue-app directly ( #3406 )
2018-06-02 18:50:18 +04:30
Pooya Parsa
8acef8d01e
feat: use postcss-preset-env instead of postcss-cssnext ( #3291 )
...
https://moox.io/blog/deprecating-cssnext
2018-06-02 01:41:55 +04:30
Pooya Parsa
412ffd4c06
feat: auto fallback to legacy build for node@6 support
2018-06-01 16:56:13 +04:30
Pooya Parsa
35ee689473
target SSR bundle to current node version for legacy build support
2018-06-01 16:55:02 +04:30
Pooya Parsa
3d2a7b29d1
use pify instead of utils.promisify for legacy build support
2018-06-01 16:54:37 +04:30
Pooya Parsa
727ef16920
fix(rollup): fix build warnings
2018-06-01 16:30:17 +04:30
Pooya Parsa
1f0053c160
fix(renderer): fix problem with HTMLPlugin's minify option ( #3392 )
2018-06-01 15:53:57 +04:30
yoyo837
b4d74b417c
minify: true => fix gap between inline-block labels
2018-05-30 10:57:03 +08:00
Michael
66030467d1
fix: add title before other meta for better SEO ( #3362 )
2018-05-23 11:17:47 +04:30
Clark Du
93696eb60b
Revert "test: bring cli test back"
2018-05-16 08:10:20 +01:00
Clark Du
7bbd6c67a5
test: for waitUntil
2018-05-15 13:10:07 +01:00
Clark Du
e962ee19e7
test: bring cli test back
2018-05-15 12:45:09 +01:00
Sébastien Chopin
3a76475ace
Merge pull request #3341 from clarkdo/babel_whitelisting
...
feat: make babel-loader exclude configurable
2018-05-14 09:50:24 +02:00
Hannes Diercks
c017da10f6
fix(lib): ensure webpack inline loaders stay prefixed
...
when making a component path relative
fix https://github.com/nuxt/nuxt.js/issues/3314
2018-05-11 21:02:28 +02:00
Clark Du
13ae634c74
refactor: simplify build.transpile
2018-05-06 20:48:19 +01:00
Clark Du
8b0c2f1a67
feat: add build.transpile to transpile npm packages
2018-05-06 19:46:02 +01:00
Clark Du
021ba5a1e2
feat: make babel-loader exclude configurable
2018-05-06 19:20:40 +01:00
Clark Du
bd97faec59
feat(vue-loader): import SFCs from dependencies
2018-05-04 17:00:46 +01:00
Sébastien Chopin
fe30ef3525
fix: Use Component instead of paths
2018-05-04 11:36:10 +02:00
Sébastien Chopin
c6553a39cd
fix : #2854
2018-05-04 10:32:26 +02:00
Clark Du
7514db73b2
feat: add hook for getting data before sending to client
2018-05-03 20:47:55 +01:00
Pooya Parsa
8feeeb0cfe
Revert "feat: add webpackPrefetch to initial async chunk options (webpack 4.6.0)"
...
This reverts commit 09b141efa4
.
2018-05-02 14:29:55 +04:30
Pooya Parsa
44d1e83c7f
cli: consola.info
2018-05-02 14:29:55 +04:30
Pooya Parsa
a8cbbf03ce
always enable resourceHints
2018-05-02 14:29:55 +04:30
Pooya Parsa
aec6828892
feat: add webpackPrefetch to initial async chunk options (webpack 4.6.0)
2018-05-02 14:29:55 +04:30
Pooya Parsa
2428a13c05
feat(ssr): render initial and used async css chunks ( vuejs/vue#7902 )
2018-05-02 14:29:55 +04:30
Pooya Parsa
dfab96fdb7
fix: whitelist vue&type=style in SSR bundle
2018-05-02 12:57:26 +04:30