Alexander Lichter
d69b4b8b12
feat: abstract minify and use value for all modes ( #3965 )
...
* feat: abstract minify and use value for all modes
* change name to htmlMinify
* only override htmlMinify with legacy value in generate mode
* Use default options for htmlMinify and add override info to warning
* Remove redundant minification settings
* Override minification settings in generator
* Cleanup and add TODO for nuxt 3
* Improve warning
* set default minify option to "true"
* make tests pass again
* remove the culprit
* replace htmlMinify with html.minify
2018-09-30 18:12:38 +02:00
Pooya Parsa
8f06a187db
feat(builder): allow to customize or disable minimizer plugins ( #4018 )
...
* feat(builder): allow to customize or disable minimizer plugins
* feat: support optimization.minimize
https://webpack.js.org/configuration/optimization/#optimization-minimize
* fix typos
2018-09-30 18:09:06 +02:00
Clark Du
1bf6385d48
fix: wrong extension for dev mode css file
2018-09-29 21:40:04 +01:00
Tatsuyuki Ishi
55a153c7d0
fix: expose loading.throttle as an option ( #3953 )
2018-09-24 18:30:22 +01:00
Pim
226b90d4ae
fix: prevent removing project by mistake due to build or generate paths ( #3869 )
2018-09-14 11:36:44 +04:30
Alexander Lichter
6fc78ea024
Fix legacy gzip warning ( #3884 )
...
Fix legacy gzip warning. Thanks to @liam-potter for pointing that out!
Related PR: #3863
## Types of changes
- [x] Bug fix (non-breaking change which fixes an issue)
## Checklist:
- [x] All new and existing tests passed.
2018-09-13 16:07:34 +01:00
Clark Du
c77fa479f6
feat(webpack, builder): allow extending loader options ( #3799 )
2018-09-10 12:57:01 +04:30
Alexander Lichter
1e0219543a
feat: automatically include env variables starting with NUXT_ENV_ ( #3862 )
2018-09-09 01:38:25 +04:30
Alexander Lichter
b74d537cba
feat(renderer): make compression middleware customizable ( #3863 )
2018-09-09 00:48:14 +04:30
Jonas Galvez
72479687d9
feat(core, cli): builtin support of https and unix sockets ( #3831 )
...
Co-authored-by: Aurélien Chrétien <aurelien@manager.one>
Co-authored-by: Rémy Sanchez <remy.sanchez@hyperthese.net>
2018-09-02 13:50:25 +04:30
Clark Du
40aae73d5b
feat: enable runtimeChunk for extracting manifest chunk
2018-08-31 22:47:49 +01:00
Clark Du
ba5df53042
refactor: remove unnecessary splitChunks process ( #3791 )
2018-08-23 15:48:05 +02:00
Clark Du
567dc860c1
feat: new filenames structure ( #3789 )
...
* feat: new filenames structure
* refactor: codes format
* refactor: remove [path] in output filename
* refactor: use chunkhash for js files
* refactor: remove normalizeFileName
2018-08-22 23:54:08 +02:00
Tatsuyuki Ishi
715df92eac
Use getFilename for url-loader assets ( #3759 )
...
Now they get [name] removed in production.
2018-08-18 10:00:35 +01:00
Clark Du
128dcbe266
refactor: add build.postcss.preset config
2018-08-15 15:22:26 +01:00
Tatsuyuki Ishi
f0045322c1
Do not remove optional tags ( #3725 )
...
Mainly, </body> getting removed results in messing up snippet injection.
2018-08-15 15:00:54 +02:00
Clark Du
1492a13162
refactor: nuxt dev watcher ( #3732 )
2018-08-15 13:48:34 +02:00
Clark Du
09188dd173
refactor: change quiet log mode after options validated
2018-08-13 17:16:25 +01:00
Anthony Fu
0dff1b8fe9
feat: support server
option in nuxt.config.js
to set PORT and HOST ( #3701 )
...
* feat: support `server` option in `nuxt.config.js` to set PORT and HOST
* lint
* change the conifg priority to `argv > nuxt.config.js > env.NUXT_PORT > env.PORT > package.json > default`
* check for `options.server`
2018-08-12 15:26:30 +01:00
Clark Du
ba2b63e131
refactor: keep error logs in quiet mode
2018-08-12 14:35:24 +01:00
Clark Du
b60c4fd432
refactor: add build.quiet config
2018-08-12 14:35:24 +01:00
Alexander Lichter
1ec5cf7b1c
lint: force if braces, no lonely ifs and add store.js ( #3685 )
...
* lint: add curly and no-lonely-if
* lint: add lib/app/store.js to eslint config
2018-08-11 00:24:53 +01:00
Clark Du
c4792d247b
refactor: options.test from env CI or test
2018-08-10 17:37:20 +01:00
Alexander Lichter
960f4fe47e
feat: make appTemplatePath customizable ( #3678 )
...
related: #1925
2018-08-10 16:23:09 +01:00
Jonas Galvez
8d21b60a24
Render dist options ( #3671 )
...
Picking up on [yet another abandoned PR](https://github.com/nuxt/nuxt.js/pull/2933/files ). Made all changes suggested by @clarkdo and wrote a test.
2018-08-10 10:34:55 +01:00
Alexander Lichter
427e836688
lint: force dot-notation where applicable ( #3677 )
2018-08-10 08:19:19 +01:00
Alexander Lichter
cb18aa6f53
feat: add Vue.config configuration to nuxt.config.js ( #3655 )
...
After #3564 and the request of #3427 (plus #3452 ) I decided to add a dedicated `vueConfig`object to the `nuxt.config.js` file.
The keys will be projected on Vue.config.
By default, `Vue.config.performance` is enabled in dev mode, `Vue.config.silent` is enabled in production mode.
Doc PR incoming.
Resolves : #2910 , #3427
2018-08-08 20:05:23 +01:00
Jonas Galvez
a522aaf125
misc: add user-defined chokidar files to watch (2) ( #3633 )
...
* misc: add user-defined chokidar files to watch
* Improved user-defined chokidar files setup
* Improved user-defined chokidar files setup (2)
* Added custom file for CLI watch test
* Added cli.dev.test.js
* Added cli.dev.test.js (2)
* Remove cli-start/cli.dev, just use cli.test
* Refactored CLI test
* Missing dot in fname
* Improved user-defined chokidar files setup (3)
* Fix killNuxt()
* Remove genHandlers
* Refactored CLI test (2)
* Refactor exitCode
* Remove debugging code
* Remove debugging code (2)
* Linting
* Linting (2)
* Disable nuxt-start test for now
* Disable nuxt-start test for now (2)
* Tweaking nuxt-start test
* Tweaking nuxt-start test (2)
* Tweaking nuxt-start test (3)
* Fix ext
* Tweaked wait params
* Fix conflicts
* hotfix
* nuxt-dev tweak
* Add blank line after variables declaration
* Disable waitFor() test due to random failure in appveyor
* Fixed error msg
* Refactored into builder.js
* Refactored into builder.js (2)
* Remove unnecessary import from nuxt-dev
* Fixed nuxt-dev test
* Debugging nuxt-dev test
* Debugging nuxt-dev test (2)
* Skip in appveyor
* Linting
* Requested changes
* Hook into nuxt-dev
* Hook into nuxt-dev (2)
* Get fname
* Get fname (2)
* Get fname (3)
* Change hook name
* Fixed conflict
2018-08-08 19:51:57 +01:00
Alexander Lichter
52d9629bac
eslint: Prefer const over let ( #3650 )
2018-08-08 12:54:05 +02:00
Jonas Galvez
3f1d634fb7
Consistent parens in arrow functions ( #3630 )
...
* Minor consistency enhancements
* Arrow parenthesis consistency
* Change linting rule
* Fix typo
* Update .eslintrc.js to only require parens for blocks
* Update style according to brace-only suggestion
* Remove --fix from lint
* Tweak no-loading time (failing test)
* Tweak no-loading time (failing test) (2)
* Tweak no-loading time (failing test) (3)
* Tweak no-loading time (failing test) (4)
* Tweak no-loading time (failing test) (5)
2018-08-06 02:12:44 +02:00
Clark Du
56db988f27
feat: exclude build.transpile in server node externals ( #3614 )
2018-07-31 15:10:24 +02:00
Alexander Lichter
8c85f2299e
feat(csp): add reportOnly option ( #3559 )
2018-07-30 18:04:02 +02: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
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
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
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
Pooya Parsa
a8cbbf03ce
always enable resourceHints
2018-05-02 14:29:55 +04:30
Sébastien Chopin
0df0b8bebc
fix: When render.scp is true, add csp.enabled to true
2018-04-13 11:08:36 +02:00
Clark Du
20010a6f47
misc: add warn for vendor
2018-04-13 14:50:39 +08:00
Ricardo Gobbo de Souza
320d1ba283
chore(options): vendor backward compability with nuxt 1.x ( #3218 )
2018-04-13 01:12:50 +04:30