Nuxt/packages/generator/package.json

25 lines
478 B
JSON
Raw Normal View History

{
"name": "@nuxt/generator",
2021-05-11 18:59:00 +00:00
"version": "2.15.6",
"repository": "nuxt/nuxt.js",
"license": "MIT",
2020-02-06 12:32:56 +00:00
"main": "dist/generator.js",
"files": [
"dist"
],
"dependencies": {
2021-05-11 18:59:00 +00:00
"@nuxt/utils": "2.15.6",
"chalk": "^4.1.1",
"consola": "^2.15.3",
"defu": "^5.0.0",
"devalue": "^2.0.1",
"fs-extra": "^10.0.0",
feat: options.target and full-static export (#6159) * feat: add options.target * fix(lint): lint * fix(test): update snapshots * fix(builder): default value for target * fix(test): fix test * fix(test): test fixing * fix: use this.options.target * fix: final test * Update packages/vue-renderer/src/renderer.js Co-Authored-By: Alexander Lichter <manniL@gmx.net> * feat: Add target option and update banner * fix(lint): fix * feat: Add warning when using serverMiddleware in static target * chore(utils): add TARGETS and MODES as constants * hotfix: lint * chore(module): add filename as alias of fileName * feat: introducing nuxt export and router/routes.json * hotfix: Fix the linting lord * chore(core): add comment for filename vs fileName * fix: use targets constant * chore: remove warning * fix: unit testing * wip: refactor and use TARGETS * fix: lint * feat: add target as alias for first arg value * fix: generate only for SPA * chore: explain to use nuxt static X * fix: render SPA fallback on redirect for static target * fix: lint issue * fix: only target is useful for now * wip * wip: nuxt static export is looking good * Update packages/generator/src/generator.js Co-Authored-By: Devon Rueckner <indirectlylit@users.noreply.github.com> * Update packages/cli/src/options/common.js Co-Authored-By: Alexander Lichter <manniL@gmx.net> * feat: add options.target * fix(lint): lint * fix(test): update snapshots * fix(builder): default value for target * fix(test): fix test * fix(test): test fixing * fix: use this.options.target * fix: final test * Update packages/vue-renderer/src/renderer.js Co-Authored-By: Alexander Lichter <manniL@gmx.net> * feat: Add target option and update banner * fix(lint): fix * feat: Add warning when using serverMiddleware in static target * chore(utils): add TARGETS and MODES as constants * hotfix: lint * chore(module): add filename as alias of fileName * feat: introducing nuxt export and router/routes.json * hotfix: Fix the linting lord * chore(core): add comment for filename vs fileName * fix: use targets constant * chore: remove warning * fix: unit testing * wip: refactor and use TARGETS * fix: lint * feat: add target as alias for first arg value * chore: explain to use nuxt static X * fix: render SPA fallback on redirect for static target * fix: lint issue * fix: only target is useful for now * wip * wip: nuxt static export is looking good * Update packages/generator/src/generator.js Co-Authored-By: Devon Rueckner <indirectlylit@users.noreply.github.com> * Update packages/cli/src/options/common.js Co-Authored-By: Alexander Lichter <manniL@gmx.net> * fix: duplicate imports * chore: don't server render if an error happens on static target * test: update unit and add export * lint: fix * lint: fix * fix: e2e test * fix: fallback only for static target * fix: dev test * feat: add generate.crawler * fix: full static is when generate.static is given * chore: improvements * fix: Add isFullStatic in nuxt/config.json * feat: handle fetch for full static * feat: router.prefetchPayloads for full static * chore: use fetch in async-data example * fix: add target only if given * fix: use created to have access to props in fetchOnServer * chore: add console.error in dev for easy debugging * feat: payload smart pre-fetching * fix: remove alias for target * fix: increment payloadFetchIndex is static set to false * chore: lint * chore: add serve command * chore: rename universal to server-side * fix: handle payloadPath on SPA fallback * fix: lint * chore lint again * feat: handle spa fallback * feat: support string for exclude * fix: fallback only if no extension or html * chore: use JSON.stringify() for static target * chore: lint again, dammit * chore: fix tests and remove too early return * fix: early return only for server target * fix: update tests * fix: unit tests * chore: add ssr option * chore: add logic for ssr option * fix: #6682 * chore(dx): add next command to run * fix: lint * fix: tests * chore: keep old behaviour for nuxt build in spa * fix: test again, oh boy * fix: alright this is good now * chore: add comment for spa fallback * chore: move routes.json to dot nuxt dir * chore: simplify check for promise * chore: unique lock id * chore: refactor isFullStatic * fix: dont set default in build context * chore: add test for serve * chore: update tests * hotfix: lint tests * chore(dx): improve message for bundling * feat: js payload extraction with jsonp * fix: keep serialized session script for legacy generate * fix: call to setPagePayload from fetchPayload * use devalue for payload chunks * feat: add initial load state chunk * feat: preload payload and state scripts * fix(vue-app): don't re-render the app if trailing slash on SSG * hotfix: remove console.log * chore(dx): add deploy infos for nuxt export Co-authored-by: Pooya Parsa <pyapar@gmail.com> * chore: handle fetching payload.js for nuxt state * chore(dx): error when using nuxt generate and static * chore: remove static option for clarity * chore: remove serverless target * hotfix: lint * hotfix: unit tests * chore: update legacy js resource * chore: remove query params from url in static target * fix: use globalName and urlJoin * chore: typo * feat: previewMode 👀 * chore: rename to enablePreview * fix: wait next tick to avoid error on spa * chore: try 1 sec * hotfix: test only for linux, wtf azure * refactor: static assets - generalize logic for modules need emit export static assets - allow customization for version, dir and base - serialization logic is only in ssr now * feat: smart state chunk creates * fix(client): ignore payload load error * perf: avoide payload loading for spa initial * perf: avoid loading failed chunks again * chore(cli): add simple compression for nuxt serve * test: update snapshots * fix version snapshot * fix(generator): set staticAssetsBase on context only for full static * fix tests * fix: honor shouldHashCspScriptSrc * chore(dx): add log for client-side fallback creation Co-authored-by: Xin Du (Clark) <clark.duxin@gmail.com> Co-authored-by: Alexander Lichter <manniL@gmx.net> Co-authored-by: Pooya Parsa <pooya@pi0.ir> Co-authored-by: Devon Rueckner <indirectlylit@users.noreply.github.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2020-05-07 19:08:01 +00:00
"html-minifier": "^4.0.0",
"node-html-parser": "^3.3.4",
"ufo": "^0.7.5"
},
"publishConfig": {
"access": "public"
merge 2.x changes into dev commit 0f28f9cdb64d8f7894cf476ffce735a32b5c2011 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:23:55 2018 +0330 add simple release script commit 16c5b892fa3104992f3a6778ac97a0fcb1ca657c Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:20:03 2018 +0330 v2.3.4 commit e4a02a51aceb3c92e47a31c2e83df8b20cc666a6 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:17:40 2018 +0330 whitelist CHANGELOG files commit c96e9f49964c6acaf3daa2f17b16261663a5d42c Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:14:29 2018 +0330 lerna auto tag commit be126bd962fd6491713d72b2f281c2677e4eb358 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:12:22 2018 +0330 remove extra gitHead commit eefa13033f106508732f984d6a6a45894a572197 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 21:09:31 2018 +0330 hotfix: build on prepublish hook commit d0af6a473664bbf55b06aec30023a51dd3d6dc9d Author: Sébastien Chopin <seb@chopin.io> Date: Mon Nov 26 18:37:12 2018 +0100 bump: Bump to v2.3.3 commit 2e90166f2a87271dedaf7072c2f7d9457bff5d34 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 20:32:11 2018 +0330 update @nuxtjs/opencollective to 0.2.0 commit f10c9829a86b0f6848c1db9694c087edfd081fc9 Author: renovate[bot] <renovate[bot]@users.noreply.github.com> Date: Mon Nov 26 20:24:49 2018 +0330 chore(deps): update dependency vue-meta to ^1.5.6 (#4427) commit b7285fe8f3c3370f1868b923994790edb33e3868 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 20:05:18 2018 +0330 remove build with devtools tests as feature is not merged yet commit b582e706fc249dea092360a87f0f1238d0c56506 Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 19:58:34 2018 +0330 update patch-only dependencies commit 289d30f836acc78a7fddbfa08e956cfe8603319b Author: Pooya Parsa <pyapar@gmail.com> Date: Mon Nov 26 19:55:51 2018 +0330 remove typings commit 7e1beed9b8688871304c3f4caadb922747b2601a Author: Dmitry Molotkov <aldarund@gmail.com> Date: Sun Nov 25 17:48:13 2018 +0300 perf(pkg): remove lodash dependency from packages (#4411) commit 4a85c0311f9b3e2cccc6e9096e33f6bc01fb6604 Author: Pooya Parsa <pyapar@gmail.com> Date: Sun Nov 25 22:46:19 2018 +0330 fix(pkg): move opencollective dependency nuxt and nuxt-legacy (#4415) commit d1877935a3ebd8324f782ab3db240a12d1e9ad36 Author: Dmitry Molotkov <aldarund@gmail.com> Date: Sun Nov 25 17:52:37 2018 +0300 fix(server, vue-app): allow unicode page names (#4402) commit e1c1240b8d0c3211b2b3927920c42693037814e9 Author: Alexander Lichter <manniL@gmx.net> Date: Sun Nov 25 14:51:32 2018 +0000 fix(server, jsdom): fix timeout error message (#4412) [skip release] commit 0c6c69b011abb3ae7d7b0ecbae722d12566db7c2 Author: Alexander Lichter <manniL@gmx.net> Date: Sat Nov 24 21:35:43 2018 +0000 fix(scrollBehavior): emit triggerScroll event after changing layer (#4399) resolves: #4080 commit 8030ca1a3d01f401e77338ad5173acad76773c14 Author: Alexander Lichter <manniL@gmx.net> Date: Sat Nov 24 18:30:28 2018 +0000 fix(progress-bar): allow 0 for values and remove duplicate defaults (#4397) commit 54d273720c9454991d16a73311c5b03303a6a4a2 Author: Clark Du <clark.duxin@gmail.com> Date: Sat Nov 24 00:02:13 2018 +0000 fix: router Expected "0" to be defined (#4394) commit 47f02ae5ca15a486635b15488af70412e7ebda0c Author: Clark Du <clark.duxin@gmail.com> Date: Fri Nov 23 22:34:05 2018 +0000 fix: empty error message in dev mode commit ff7c083dda3158ff8b1e0bc4868e64dede9f0313 Author: Clark Du <clark.duxin@gmail.com> Date: Thu Nov 22 15:48:26 2018 +0000 fix: modern=true or false not work as expected (#4378)
2018-11-26 18:02:10 +00:00
}
}