expeditaea 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.all-contributorsrc +135 -0
- package/.editorconfig +13 -0
- package/.eslintignore +16 -0
- package/.eslintrc.js +92 -0
- package/.github/FUNDING.yml +7 -0
- package/.github/ISSUE_TEMPLATE/bug-report.md +47 -0
- package/.github/ISSUE_TEMPLATE/config.yml +6 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +26 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +24 -0
- package/.github/lock.yml +9 -0
- package/.github/nuxt.png +0 -0
- package/.github/stale.yml +24 -0
- package/.github/workflows/nightly.yml +49 -0
- package/.github/workflows/test.yml +355 -0
- package/.github/workflows/windows.yml +165 -0
- package/.gitpod.yml +6 -0
- package/.ls-lint.yml +8 -0
- package/.yarnrc +1 -0
- package/babel.config.js +18 -0
- package/benchmarks/README.md +29 -0
- package/benchmarks/package.json +10 -0
- package/benchmarks/pages/stateless-big.vue +7 -0
- package/benchmarks/pages/stateless.vue +3 -0
- package/distributions/nuxt/README.md +153 -0
- package/distributions/nuxt/bin/nuxt.js +10 -0
- package/distributions/nuxt/package.js +29 -0
- package/distributions/nuxt/package.json +54 -0
- package/distributions/nuxt/src/index.js +5 -0
- package/distributions/nuxt/webpack.config.js +4 -0
- package/distributions/nuxt-start/README.md +42 -0
- package/distributions/nuxt-start/bin/nuxt-start.js +14 -0
- package/distributions/nuxt-start/package.js +42 -0
- package/distributions/nuxt-start/package.json +44 -0
- package/distributions/nuxt-start/src/index.js +1 -0
- package/examples/async-component-injection/README.md +3 -0
- package/examples/async-component-injection/assets/css/common.css +69 -0
- package/examples/async-component-injection/assets/css/index.css +57 -0
- package/examples/async-component-injection/assets/css/post.css +307 -0
- package/examples/async-component-injection/assets/img/github.png +0 -0
- package/examples/async-component-injection/assets/img/swimmer.jpg +0 -0
- package/examples/async-component-injection/assets/img/twitter.png +0 -0
- package/examples/async-component-injection/layouts/default.vue +20 -0
- package/examples/async-component-injection/nuxt.config.js +22 -0
- package/examples/async-component-injection/package.json +12 -0
- package/examples/async-component-injection/pages/_slug.vue +21 -0
- package/examples/async-component-injection/pages/index.vue +30 -0
- package/examples/async-component-injection/posts/404.vue +5 -0
- package/examples/async-component-injection/posts/deep-dive-into-ocean.vue +19 -0
- package/examples/async-component-injection/posts/welcome-to-my-blog.vue +12 -0
- package/examples/async-component-injection/static/favicon.ico +0 -0
- package/examples/async-data/README.md +3 -0
- package/examples/async-data/nuxt.config.js +15 -0
- package/examples/async-data/package.json +13 -0
- package/examples/async-data/pages/index.vue +35 -0
- package/examples/async-data/pages/posts/_id.vue +55 -0
- package/examples/async-data/pages/posts/index.vue +64 -0
- package/examples/auth-jwt/README.md +3 -0
- package/examples/auth-jwt/middleware/authenticated.js +6 -0
- package/examples/auth-jwt/middleware/notAuthenticated.js +6 -0
- package/examples/auth-jwt/package.json +14 -0
- package/examples/auth-jwt/pages/index.vue +34 -0
- package/examples/auth-jwt/pages/login.vue +37 -0
- package/examples/auth-jwt/pages/secret.vue +14 -0
- package/examples/auth-jwt/store/index.js +26 -0
- package/examples/auth-routes/README.md +3 -0
- package/examples/auth-routes/api/index.js +36 -0
- package/examples/auth-routes/middleware/auth.js +8 -0
- package/examples/auth-routes/nuxt.config.js +32 -0
- package/examples/auth-routes/package.json +16 -0
- package/examples/auth-routes/pages/index.vue +72 -0
- package/examples/auth-routes/pages/secret.vue +15 -0
- package/examples/auth-routes/store/index.js +37 -0
- package/examples/axios/README.md +38 -0
- package/examples/axios/nuxt.config.js +9 -0
- package/examples/axios/package.json +15 -0
- package/examples/axios/pages/index.vue +17 -0
- package/examples/cached-components/README.md +1 -0
- package/examples/cached-components/nuxt.config.js +10 -0
- package/examples/cached-components/package.json +13 -0
- package/examples/cached-components/pages/index.vue +20 -0
- package/examples/coffeescript/README.md +22 -0
- package/examples/coffeescript/components/Logo.vue +79 -0
- package/examples/coffeescript/layouts/default.vue +52 -0
- package/examples/coffeescript/modules/coffeescript.js +17 -0
- package/examples/coffeescript/nuxt.config.js +24 -0
- package/examples/coffeescript/package.json +20 -0
- package/examples/coffeescript/pages/README.md +7 -0
- package/examples/coffeescript/pages/index.vue +58 -0
- package/examples/coffeescript/static/favicon.ico +0 -0
- package/examples/coffeescript/store/index.coffee +2 -0
- package/examples/custom-build/README.md +1 -0
- package/examples/custom-build/assets/nuxt.png +0 -0
- package/examples/custom-build/nuxt.config.js +26 -0
- package/examples/custom-build/package.json +13 -0
- package/examples/custom-build/pages/index.vue +15 -0
- package/examples/custom-layouts/README.md +5 -0
- package/examples/custom-layouts/layouts/dark.vue +24 -0
- package/examples/custom-layouts/layouts/default.vue +15 -0
- package/examples/custom-layouts/layouts/error.vue +35 -0
- package/examples/custom-layouts/package.json +12 -0
- package/examples/custom-layouts/pages/about.vue +19 -0
- package/examples/custom-layouts/pages/index.vue +8 -0
- package/examples/custom-layouts/static/logo.png +0 -0
- package/examples/custom-loading/README.md +3 -0
- package/examples/custom-loading/components/loading.vue +36 -0
- package/examples/custom-loading/nuxt.config.js +3 -0
- package/examples/custom-loading/package.json +12 -0
- package/examples/custom-loading/pages/about.vue +28 -0
- package/examples/custom-loading/pages/index.vue +28 -0
- package/examples/custom-page-loading/README.md +5 -0
- package/examples/custom-page-loading/package.json +12 -0
- package/examples/custom-page-loading/pages/about.vue +53 -0
- package/examples/custom-page-loading/pages/final.vue +21 -0
- package/examples/custom-page-loading/pages/index.vue +28 -0
- package/examples/custom-port-host/README.md +3 -0
- package/examples/custom-port-host/nuxt.config.js +6 -0
- package/examples/custom-port-host/package.json +12 -0
- package/examples/custom-port-host/pages/index.vue +3 -0
- package/examples/custom-routes/README.md +3 -0
- package/examples/custom-routes/nuxt.config.js +2 -0
- package/examples/custom-routes/package.json +13 -0
- package/examples/custom-routes/pages/index.vue +46 -0
- package/examples/custom-routes/pages/users/_id.vue +38 -0
- package/examples/custom-server/README.md +3 -0
- package/examples/custom-server/nuxt.config.js +1 -0
- package/examples/custom-server/package.json +13 -0
- package/examples/custom-server/pages/index.vue +7 -0
- package/examples/custom-server/server.js +25 -0
- package/examples/custom-template/app.html +13 -0
- package/examples/custom-template/nuxt.config.js +5 -0
- package/examples/custom-template/package.json +12 -0
- package/examples/custom-template/pages/index.vue +5 -0
- package/examples/docker-build/.dockerignore +84 -0
- package/examples/docker-build/.yarnclean +5 -0
- package/examples/docker-build/Dockerfile +31 -0
- package/examples/docker-build/README.md +12 -0
- package/examples/docker-build/assets/README.md +1 -0
- package/examples/docker-build/components/README.md +1 -0
- package/examples/docker-build/layouts/README.md +1 -0
- package/examples/docker-build/layouts/default.vue +8 -0
- package/examples/docker-build/middleware/README.md +1 -0
- package/examples/docker-build/nuxt.config.js +54 -0
- package/examples/docker-build/package.json +15 -0
- package/examples/docker-build/pages/README.md +1 -0
- package/examples/docker-build/pages/index.vue +12 -0
- package/examples/docker-build/plugins/README.md +1 -0
- package/examples/docker-build/static/README.md +1 -0
- package/examples/docker-build/static/favicon.ico +0 -0
- package/examples/docker-build/store/README.md +1 -0
- package/examples/dynamic-components/README.md +5 -0
- package/examples/dynamic-components/components/chart.js +9 -0
- package/examples/dynamic-components/components/code.vue +23 -0
- package/examples/dynamic-components/components/image.vue +71 -0
- package/examples/dynamic-components/components/text.vue +22 -0
- package/examples/dynamic-components/js/messages.js +27 -0
- package/examples/dynamic-components/nuxt.config.js +9 -0
- package/examples/dynamic-components/package.json +15 -0
- package/examples/dynamic-components/pages/index.vue +71 -0
- package/examples/dynamic-components/pages/ssr.vue +63 -0
- package/examples/dynamic-layouts/README.md +3 -0
- package/examples/dynamic-layouts/layouts/error.vue +36 -0
- package/examples/dynamic-layouts/layouts/mobile.vue +39 -0
- package/examples/dynamic-layouts/middleware/mobile.js +4 -0
- package/examples/dynamic-layouts/nuxt.config.js +10 -0
- package/examples/dynamic-layouts/package.json +12 -0
- package/examples/dynamic-layouts/pages/about.vue +19 -0
- package/examples/dynamic-layouts/pages/index.vue +14 -0
- package/examples/dynamic-layouts/static/logo.png +0 -0
- package/examples/global-css/README.md +3 -0
- package/examples/global-css/assets/roboto.woff2 +0 -0
- package/examples/global-css/css/main.css +22 -0
- package/examples/global-css/nuxt.config.js +20 -0
- package/examples/global-css/package.json +13 -0
- package/examples/global-css/pages/about.vue +17 -0
- package/examples/global-css/pages/index.vue +17 -0
- package/examples/hello-world/README.md +3 -0
- package/examples/hello-world/nuxt.config.js +0 -0
- package/examples/hello-world/package.json +12 -0
- package/examples/hello-world/pages/about.vue +21 -0
- package/examples/hello-world/pages/index.vue +16 -0
- package/examples/i18n/README.md +5 -0
- package/examples/i18n/layouts/default.vue +95 -0
- package/examples/i18n/locales/en.json +16 -0
- package/examples/i18n/locales/fr.json +16 -0
- package/examples/i18n/middleware/i18n.js +21 -0
- package/examples/i18n/nuxt.config.js +10 -0
- package/examples/i18n/package.json +14 -0
- package/examples/i18n/pages/_lang/about.vue +18 -0
- package/examples/i18n/pages/_lang/index.vue +18 -0
- package/examples/i18n/pages/about.vue +4 -0
- package/examples/i18n/pages/index.vue +4 -0
- package/examples/i18n/plugins/i18n.js +25 -0
- package/examples/i18n/store/index.js +12 -0
- package/examples/jest-puppeteer/README.md +43 -0
- package/examples/jest-puppeteer/jest-puppeteer.config.js +10 -0
- package/examples/jest-puppeteer/jest.config.js +4 -0
- package/examples/jest-puppeteer/package.json +19 -0
- package/examples/jest-puppeteer/pages/about.vue +23 -0
- package/examples/jest-puppeteer/pages/index.vue +16 -0
- package/examples/jest-puppeteer/test/__snapshots__/index.spec.js.snap +5 -0
- package/examples/jest-puppeteer/test/index.spec.js +32 -0
- package/examples/jest-vtu-example/.eslintignore +1 -0
- package/examples/jest-vtu-example/README.md +13 -0
- package/examples/jest-vtu-example/babel.config.js +7 -0
- package/examples/jest-vtu-example/components/Btn/Btn.spec.js +34 -0
- package/examples/jest-vtu-example/components/Btn/Btn.vue +25 -0
- package/examples/jest-vtu-example/components/Btn/__snapshots__/Btn.spec.js.snap +7 -0
- package/examples/jest-vtu-example/layouts/default.vue +5 -0
- package/examples/jest-vtu-example/nuxt.config.js +3 -0
- package/examples/jest-vtu-example/package.json +47 -0
- package/examples/jest-vtu-example/pages/__snapshots__/index.spec.js.snap +12 -0
- package/examples/jest-vtu-example/pages/index.spec.js +14 -0
- package/examples/jest-vtu-example/pages/index.vue +20 -0
- package/examples/jsx/README.md +7 -0
- package/examples/jsx/components/test.vue +22 -0
- package/examples/jsx/package.json +12 -0
- package/examples/jsx/pages/about.js +21 -0
- package/examples/jsx/pages/index.js +20 -0
- package/examples/layout-transitions/README.md +3 -0
- package/examples/layout-transitions/assets/main.css +52 -0
- package/examples/layout-transitions/layouts/secondary.vue +6 -0
- package/examples/layout-transitions/nuxt.config.js +7 -0
- package/examples/layout-transitions/package.json +12 -0
- package/examples/layout-transitions/pages/about.vue +18 -0
- package/examples/layout-transitions/pages/index.vue +28 -0
- package/examples/layout-transitions/pages/users-2.vue +104 -0
- package/examples/layout-transitions/pages/users.vue +89 -0
- package/examples/markdownit/README.md +5 -0
- package/examples/markdownit/nuxt.config.js +8 -0
- package/examples/markdownit/package.json +18 -0
- package/examples/markdownit/pages/about.vue +6 -0
- package/examples/markdownit/pages/index.vue +19 -0
- package/examples/markdownit/pages/pug.vue +20 -0
- package/examples/markdownit/plugins/md-it.js +5 -0
- package/examples/meta-info/README.md +13 -0
- package/examples/meta-info/components/twitter-head-card.vue +22 -0
- package/examples/meta-info/nuxt.config.js +13 -0
- package/examples/meta-info/package.json +12 -0
- package/examples/meta-info/pages/about.vue +36 -0
- package/examples/meta-info/pages/index.vue +36 -0
- package/examples/meta-info/static/about.js +1 -0
- package/examples/meta-info/static/body.js +1 -0
- package/examples/meta-info/static/defer.js +1 -0
- package/examples/meta-info/static/head.js +1 -0
- package/examples/middleware/README.md +6 -0
- package/examples/middleware/components/Visits.vue +42 -0
- package/examples/middleware/layouts/default.vue +14 -0
- package/examples/middleware/middleware/user-agent.js +3 -0
- package/examples/middleware/middleware/visits.js +3 -0
- package/examples/middleware/nuxt.config.js +5 -0
- package/examples/middleware/package.json +12 -0
- package/examples/middleware/pages/_slug.vue +33 -0
- package/examples/middleware/store/index.js +12 -0
- package/examples/minimal-features/README.md +3 -0
- package/examples/minimal-features/nuxt.config.js +28 -0
- package/examples/minimal-features/package.json +12 -0
- package/examples/minimal-features/pages/about.vue +21 -0
- package/examples/minimal-features/pages/index.vue +16 -0
- package/examples/named-views/README.md +1 -0
- package/examples/named-views/components/childLeft.vue +15 -0
- package/examples/named-views/components/mainTop.vue +19 -0
- package/examples/named-views/layouts/default.vue +6 -0
- package/examples/named-views/nuxt.config.js +30 -0
- package/examples/named-views/package.json +12 -0
- package/examples/named-views/pages/index/child/_id/index.vue +24 -0
- package/examples/named-views/pages/index/section.vue +16 -0
- package/examples/named-views/pages/index.vue +73 -0
- package/examples/named-views/pages/main.vue +50 -0
- package/examples/nested-components/README.md +1 -0
- package/examples/nested-components/components/paragraph.vue +12 -0
- package/examples/nested-components/components/post.vue +32 -0
- package/examples/nested-components/package.json +12 -0
- package/examples/nested-components/pages/index.vue +54 -0
- package/examples/nested-routes/README.md +3 -0
- package/examples/nested-routes/nuxt.config.js +29 -0
- package/examples/nested-routes/package.json +13 -0
- package/examples/nested-routes/pages/index/_id.vue +34 -0
- package/examples/nested-routes/pages/index/index.vue +19 -0
- package/examples/nested-routes/pages/index.vue +77 -0
- package/examples/new-fetch/README.md +5 -0
- package/examples/new-fetch/components/Author.vue +30 -0
- package/examples/new-fetch/layouts/default.vue +28 -0
- package/examples/new-fetch/nuxt.config.js +18 -0
- package/examples/new-fetch/package.json +18 -0
- package/examples/new-fetch/pages/index.vue +43 -0
- package/examples/new-fetch/pages/posts/_id.vue +54 -0
- package/examples/new-fetch/plugins/vue-placeholders.js +4 -0
- package/examples/no-ssr/README.md +3 -0
- package/examples/no-ssr/package.json +12 -0
- package/examples/no-ssr/pages/index.vue +17 -0
- package/examples/nuxt-prefetch/README.md +3 -0
- package/examples/nuxt-prefetch/assets/check.svg +1 -0
- package/examples/nuxt-prefetch/layouts/default.vue +57 -0
- package/examples/nuxt-prefetch/nuxt.config.js +22 -0
- package/examples/nuxt-prefetch/package.json +12 -0
- package/examples/nuxt-prefetch/pages/accelerated.vue +17 -0
- package/examples/nuxt-prefetch/pages/active.vue +17 -0
- package/examples/nuxt-prefetch/pages/agile.vue +17 -0
- package/examples/nuxt-prefetch/pages/brisk.vue +17 -0
- package/examples/nuxt-prefetch/pages/dashing.vue +17 -0
- package/examples/nuxt-prefetch/pages/electric.vue +17 -0
- package/examples/nuxt-prefetch/pages/flashing.vue +17 -0
- package/examples/nuxt-prefetch/pages/fleet.vue +17 -0
- package/examples/nuxt-prefetch/pages/fleeting.vue +17 -0
- package/examples/nuxt-prefetch/pages/flying.vue +17 -0
- package/examples/nuxt-prefetch/pages/hot.vue +17 -0
- package/examples/nuxt-prefetch/pages/hurried.vue +17 -0
- package/examples/nuxt-prefetch/pages/index.vue +17 -0
- package/examples/nuxt-prefetch/pages/nimble.vue +17 -0
- package/examples/nuxt-prefetch/pages/quick.vue +17 -0
- package/examples/nuxt-prefetch/pages/racing.vue +17 -0
- package/examples/nuxt-prefetch/pages/rapid.vue +17 -0
- package/examples/nuxt-prefetch/pages/ready.vue +17 -0
- package/examples/nuxt-prefetch/pages/snap.vue +17 -0
- package/examples/nuxt-prefetch/pages/swift.vue +17 -0
- package/examples/nuxt-prefetch/pages/winged.vue +17 -0
- package/examples/nuxt-prefetch/store/index.js +25 -0
- package/examples/plugins-vendor/README.md +3 -0
- package/examples/plugins-vendor/nuxt.config.js +6 -0
- package/examples/plugins-vendor/package.json +15 -0
- package/examples/plugins-vendor/pages/about.vue +29 -0
- package/examples/plugins-vendor/pages/index.vue +42 -0
- package/examples/plugins-vendor/plugins/vue-notifications.js +23 -0
- package/examples/programmatic/nuxt.config.js +5 -0
- package/examples/programmatic/package.json +12 -0
- package/examples/programmatic/pages/index.vue +5 -0
- package/examples/programmatic/scripts/build.js +8 -0
- package/examples/programmatic/scripts/dev.js +9 -0
- package/examples/programmatic/scripts/start.js +8 -0
- package/examples/pug/README.md +3 -0
- package/examples/pug/package.json +14 -0
- package/examples/pug/pages/about.vue +18 -0
- package/examples/pug/pages/index.vue +13 -0
- package/examples/pug-stylus-coffee/README.md +20 -0
- package/examples/pug-stylus-coffee/components/Logo.vue +66 -0
- package/examples/pug-stylus-coffee/components/README.md +7 -0
- package/examples/pug-stylus-coffee/layouts/README.md +7 -0
- package/examples/pug-stylus-coffee/layouts/default.vue +46 -0
- package/examples/pug-stylus-coffee/middleware/README.md +8 -0
- package/examples/pug-stylus-coffee/modules/coffeescript.js +17 -0
- package/examples/pug-stylus-coffee/nuxt.config.coffee +48 -0
- package/examples/pug-stylus-coffee/nuxt.config.js +2 -0
- package/examples/pug-stylus-coffee/package.json +25 -0
- package/examples/pug-stylus-coffee/pages/README.md +7 -0
- package/examples/pug-stylus-coffee/pages/index.vue +55 -0
- package/examples/pug-stylus-coffee/plugins/README.md +7 -0
- package/examples/pug-stylus-coffee/static/README.md +10 -0
- package/examples/pug-stylus-coffee/static/favicon.ico +0 -0
- package/examples/pug-stylus-coffee/store/README.md +10 -0
- package/examples/pug-stylus-coffee/store/index.coffee +3 -0
- package/examples/routes-meta/README.md +5 -0
- package/examples/routes-meta/layouts/default.vue +73 -0
- package/examples/routes-meta/middleware/theme.js +5 -0
- package/examples/routes-meta/nuxt.config.js +6 -0
- package/examples/routes-meta/package.json +13 -0
- package/examples/routes-meta/pages/about.vue +32 -0
- package/examples/routes-meta/pages/index.vue +22 -0
- package/examples/routes-meta/pages/parent/blue.vue +20 -0
- package/examples/routes-meta/pages/parent.vue +18 -0
- package/examples/routes-meta/store/index.js +9 -0
- package/examples/routes-transitions/README.md +3 -0
- package/examples/routes-transitions/assets/main.css +45 -0
- package/examples/routes-transitions/nuxt.config.js +3 -0
- package/examples/routes-transitions/package.json +12 -0
- package/examples/routes-transitions/pages/about.vue +14 -0
- package/examples/routes-transitions/pages/index.vue +15 -0
- package/examples/routes-transitions/pages/users.vue +87 -0
- package/examples/scroll-behavior/README.md +3 -0
- package/examples/scroll-behavior/assets/main.css +69 -0
- package/examples/scroll-behavior/layouts/default2.vue +3 -0
- package/examples/scroll-behavior/nuxt.config.js +4 -0
- package/examples/scroll-behavior/package.json +14 -0
- package/examples/scroll-behavior/pages/about/contact.vue +13 -0
- package/examples/scroll-behavior/pages/about/profile.vue +12 -0
- package/examples/scroll-behavior/pages/about.vue +27 -0
- package/examples/scroll-behavior/pages/another-long.vue +16 -0
- package/examples/scroll-behavior/pages/index.vue +31 -0
- package/examples/scroll-behavior/pages/long.vue +42 -0
- package/examples/scroll-behavior/pages/users.vue +87 -0
- package/examples/spa/README.md +2 -0
- package/examples/spa/assets/main.css +6 -0
- package/examples/spa/nuxt.config.js +41 -0
- package/examples/spa/package.json +12 -0
- package/examples/spa/pages/about.vue +18 -0
- package/examples/spa/pages/index.vue +8 -0
- package/examples/spa/static/favicon.ico +0 -0
- package/examples/static-images/README.md +3 -0
- package/examples/static-images/package.json +12 -0
- package/examples/static-images/pages/about.vue +40 -0
- package/examples/static-images/pages/index.vue +19 -0
- package/examples/static-images/static/nuxt-black.png +0 -0
- package/examples/static-images/static/nuxt.png +0 -0
- package/examples/storybook/.storybook/addons.js +5 -0
- package/examples/storybook/.storybook/config.js +21 -0
- package/examples/storybook/.storybook/webpack.config.js +14 -0
- package/examples/storybook/README.md +44 -0
- package/examples/storybook/components/Button.vue +36 -0
- package/examples/storybook/components/Layout.vue +92 -0
- package/examples/storybook/components/LineChart.js +9 -0
- package/examples/storybook/components/Logo.vue +79 -0
- package/examples/storybook/components/VuetifyLogo.vue +16 -0
- package/examples/storybook/components/Welcome.vue +124 -0
- package/examples/storybook/layouts/default.vue +102 -0
- package/examples/storybook/nuxt.config.js +40 -0
- package/examples/storybook/package.json +35 -0
- package/examples/storybook/pages/index.vue +63 -0
- package/examples/storybook/pages/inspire.vue +15 -0
- package/examples/storybook/plugins/vuetify.js +15 -0
- package/examples/storybook/static/favicon.ico +0 -0
- package/examples/storybook/static/v.png +0 -0
- package/examples/storybook/store/README.md +10 -0
- package/examples/storybook/stories/LineChart.story.js +92 -0
- package/examples/storybook/stories/Logo.story.js +45 -0
- package/examples/storybook/stories/MyButton.story.js +14 -0
- package/examples/storybook/stories/Welcome.story.js +14 -0
- package/examples/storybook/stories/collection.story.js +227 -0
- package/examples/storybook/stories/storybase.js +82 -0
- package/examples/storybook/stories/vuetify.story.js +110 -0
- package/examples/style-resources/README.md +56 -0
- package/examples/style-resources/assets/resources.less +1 -0
- package/examples/style-resources/assets/variables.scss +1 -0
- package/examples/style-resources/nuxt.config.js +9 -0
- package/examples/style-resources/package.json +18 -0
- package/examples/style-resources/pages/index.vue +18 -0
- package/examples/style-resources/pages/less.vue +21 -0
- package/examples/styled-vue/README.md +5 -0
- package/examples/styled-vue/nuxt.config.js +5 -0
- package/examples/styled-vue/package.json +16 -0
- package/examples/styled-vue/pages/index.vue +35 -0
- package/examples/tailwindcss/README.md +5 -0
- package/examples/tailwindcss/assets/css/tailwind.css +57 -0
- package/examples/tailwindcss/layouts/default.vue +14 -0
- package/examples/tailwindcss/nuxt.config.js +3 -0
- package/examples/tailwindcss/package.json +17 -0
- package/examples/tailwindcss/pages/about.vue +21 -0
- package/examples/tailwindcss/pages/index.vue +29 -0
- package/examples/tailwindcss/postcss.config.js +6 -0
- package/examples/tailwindcss/tailwind.js +744 -0
- package/examples/tailwindcss-purgecss/.github/demo.png +0 -0
- package/examples/tailwindcss-purgecss/.github/pagespeed-desktop.png +0 -0
- package/examples/tailwindcss-purgecss/.github/pagespeed-mobile.png +0 -0
- package/examples/tailwindcss-purgecss/.github/tailwind-default.png +0 -0
- package/examples/tailwindcss-purgecss/.github/tailwind-purgecss.png +0 -0
- package/examples/tailwindcss-purgecss/README.md +27 -0
- package/examples/tailwindcss-purgecss/assets/css/tailwind.css +63 -0
- package/examples/tailwindcss-purgecss/components/MyComponent.vue +7 -0
- package/examples/tailwindcss-purgecss/layouts/default.vue +8 -0
- package/examples/tailwindcss-purgecss/nuxt.config.js +25 -0
- package/examples/tailwindcss-purgecss/package.json +25 -0
- package/examples/tailwindcss-purgecss/pages/index.vue +21 -0
- package/examples/tailwindcss-purgecss/tailwind.config.js +20 -0
- package/examples/uikit/README.md +7 -0
- package/examples/uikit/layouts/default.vue +5 -0
- package/examples/uikit/nuxt.config.js +6 -0
- package/examples/uikit/package.json +14 -0
- package/examples/uikit/pages/about.vue +21 -0
- package/examples/uikit/pages/index.vue +22 -0
- package/examples/uikit/plugins/uikit.js +5 -0
- package/examples/vue-apollo/README.md +9 -0
- package/examples/vue-apollo/apollo/queries/allCars.gql +8 -0
- package/examples/vue-apollo/apollo/queries/car.gql +8 -0
- package/examples/vue-apollo/nuxt.config.js +10 -0
- package/examples/vue-apollo/package.json +16 -0
- package/examples/vue-apollo/pages/car/_id.vue +49 -0
- package/examples/vue-apollo/pages/index.vue +44 -0
- package/examples/vue-chartjs/README.md +7 -0
- package/examples/vue-chartjs/components/bar-chart.js +9 -0
- package/examples/vue-chartjs/components/doughnut-chart.js +9 -0
- package/examples/vue-chartjs/layouts/default.vue +62 -0
- package/examples/vue-chartjs/nuxt.config.js +16 -0
- package/examples/vue-chartjs/package.json +16 -0
- package/examples/vue-chartjs/pages/contributors.vue +57 -0
- package/examples/vue-chartjs/pages/index.vue +44 -0
- package/examples/vue-class-component/README.md +3 -0
- package/examples/vue-class-component/components/Base.vue +49 -0
- package/examples/vue-class-component/components/Child.vue +30 -0
- package/examples/vue-class-component/package.json +13 -0
- package/examples/vue-class-component/pages/about.vue +10 -0
- package/examples/vue-class-component/pages/index.vue +19 -0
- package/examples/vuex-persistedstate/README.md +4 -0
- package/examples/vuex-persistedstate/nuxt.config.js +6 -0
- package/examples/vuex-persistedstate/package.json +13 -0
- package/examples/vuex-persistedstate/pages/index.vue +26 -0
- package/examples/vuex-persistedstate/store/index.js +14 -0
- package/examples/vuex-store/README.md +7 -0
- package/examples/vuex-store/package.json +12 -0
- package/examples/vuex-store/pages/about.vue +12 -0
- package/examples/vuex-store/pages/index.vue +44 -0
- package/examples/vuex-store/pages/todos.vue +45 -0
- package/examples/vuex-store/pages/website.vue +35 -0
- package/examples/vuex-store/store/articles/comments/mutations.js +5 -0
- package/examples/vuex-store/store/articles/comments.js +13 -0
- package/examples/vuex-store/store/articles.js +19 -0
- package/examples/vuex-store/store/index.js +9 -0
- package/examples/vuex-store/store/todos/getters.js +5 -0
- package/examples/vuex-store/store/todos/mutations.js +12 -0
- package/examples/vuex-store/store/todos/state.js +3 -0
- package/examples/web-worker/.eslintrc.js +19 -0
- package/examples/web-worker/README.md +26 -0
- package/examples/web-worker/assets/README.md +8 -0
- package/examples/web-worker/assets/js/Example.worker.js +19 -0
- package/examples/web-worker/components/AppLogo.vue +79 -0
- package/examples/web-worker/components/README.md +6 -0
- package/examples/web-worker/layouts/README.md +8 -0
- package/examples/web-worker/layouts/default.vue +58 -0
- package/examples/web-worker/nuxt.config.js +52 -0
- package/examples/web-worker/package.json +24 -0
- package/examples/web-worker/pages/README.md +7 -0
- package/examples/web-worker/pages/index.vue +185 -0
- package/examples/web-worker/plugins/README.md +8 -0
- package/examples/web-worker/plugins/inject-ww.js +9 -0
- package/examples/web-worker/static/README.md +11 -0
- package/examples/web-worker/static/favicon.ico +0 -0
- package/examples/with-amp/README.md +3 -0
- package/examples/with-amp/app.html +11 -0
- package/examples/with-amp/assets/main.css +23 -0
- package/examples/with-amp/components/Byline.vue +16 -0
- package/examples/with-amp/nuxt.config.js +39 -0
- package/examples/with-amp/package.json +14 -0
- package/examples/with-amp/pages/dog.vue +36 -0
- package/examples/with-amp/pages/index.vue +36 -0
- package/examples/with-amp/static/cat.jpg +0 -0
- package/examples/with-amp/static/dog.jpg +0 -0
- package/examples/with-ava/Readme.md +7 -0
- package/examples/with-ava/package.json +17 -0
- package/examples/with-ava/pages/index.vue +19 -0
- package/examples/with-ava/test/index.test.js +43 -0
- package/examples/with-buefy/README.md +3 -0
- package/examples/with-buefy/components/card.vue +42 -0
- package/examples/with-buefy/nuxt.config.js +12 -0
- package/examples/with-buefy/package.json +16 -0
- package/examples/with-buefy/pages/index.vue +43 -0
- package/examples/with-cookies/README.md +5 -0
- package/examples/with-cookies/nuxt.config.js +9 -0
- package/examples/with-cookies/package.json +14 -0
- package/examples/with-cookies/pages/index.vue +85 -0
- package/examples/with-cookies/plugins/cookies.js +34 -0
- package/examples/with-element-ui/README.md +3 -0
- package/examples/with-element-ui/layouts/default.vue +10 -0
- package/examples/with-element-ui/nuxt.config.js +15 -0
- package/examples/with-element-ui/package.json +19 -0
- package/examples/with-element-ui/pages/index.vue +108 -0
- package/examples/with-element-ui/plugins/element-ui.js +7 -0
- package/examples/with-feathers/.editorconfig +13 -0
- package/examples/with-feathers/.eslintrc.js +42 -0
- package/examples/with-feathers/.jshintrc +29 -0
- package/examples/with-feathers/LICENSE +22 -0
- package/examples/with-feathers/README.md +50 -0
- package/examples/with-feathers/config/default.json +11 -0
- package/examples/with-feathers/config/production.json +11 -0
- package/examples/with-feathers/nuxt.config.js +5 -0
- package/examples/with-feathers/package.json +47 -0
- package/examples/with-feathers/pages/about.vue +18 -0
- package/examples/with-feathers/pages/index.vue +8 -0
- package/examples/with-feathers/src/app.js +28 -0
- package/examples/with-feathers/src/hooks/index.js +11 -0
- package/examples/with-feathers/src/index.js +14 -0
- package/examples/with-feathers/src/middleware/index.js +10 -0
- package/examples/with-feathers/src/middleware/nuxt.js +23 -0
- package/examples/with-feathers/src/services/authentication/index.js +9 -0
- package/examples/with-feathers/src/services/index.js +9 -0
- package/examples/with-feathers/src/services/user/hooks/index.js +50 -0
- package/examples/with-feathers/src/services/user/index.js +33 -0
- package/examples/with-feathers/static/favicon.ico +0 -0
- package/examples/with-feathers/test/app.test.js +36 -0
- package/examples/with-feathers/test/services/user/index.test.js +8 -0
- package/examples/with-firebase/README.md +29 -0
- package/examples/with-firebase/layouts/default.vue +29 -0
- package/examples/with-firebase/nuxt.config.js +11 -0
- package/examples/with-firebase/package.json +21 -0
- package/examples/with-firebase/pages/index.vue +41 -0
- package/examples/with-firebase/pages/users/_key.vue +31 -0
- package/examples/with-firebase/plugins/axios.js +5 -0
- package/examples/with-keep-alive/README.md +15 -0
- package/examples/with-keep-alive/layouts/default.vue +3 -0
- package/examples/with-keep-alive/package.json +12 -0
- package/examples/with-keep-alive/pages/about.vue +21 -0
- package/examples/with-keep-alive/pages/index.vue +16 -0
- package/examples/with-museui/README.md +3 -0
- package/examples/with-museui/nuxt.config.js +26 -0
- package/examples/with-museui/package.json +13 -0
- package/examples/with-museui/pages/index.vue +43 -0
- package/examples/with-museui/plugins/museui.js +4 -0
- package/examples/with-purgecss/README.md +6 -0
- package/examples/with-purgecss/assets/css/tailwind.css +57 -0
- package/examples/with-purgecss/layouts/default.vue +14 -0
- package/examples/with-purgecss/nuxt.config.js +44 -0
- package/examples/with-purgecss/package.json +18 -0
- package/examples/with-purgecss/pages/about.vue +21 -0
- package/examples/with-purgecss/pages/index.vue +29 -0
- package/examples/with-purgecss/tailwind.js +744 -0
- package/examples/with-sockets/README.md +12 -0
- package/examples/with-sockets/io/index.js +26 -0
- package/examples/with-sockets/nuxt.config.js +12 -0
- package/examples/with-sockets/package.json +18 -0
- package/examples/with-sockets/pages/index.vue +157 -0
- package/examples/with-sockets/plugins/socket.io.js +4 -0
- package/examples/with-sockets/server.js +36 -0
- package/examples/with-tape/README.md +3 -0
- package/examples/with-tape/package.json +22 -0
- package/examples/with-tape/pages/index.vue +35 -0
- package/examples/with-tape/test/index.test.js +43 -0
- package/examples/with-tape/test/setup.js +14 -0
- package/examples/with-vue-material/README.md +9 -0
- package/examples/with-vue-material/nuxt.config.js +25 -0
- package/examples/with-vue-material/package.json +15 -0
- package/examples/with-vue-material/pages/index.vue +132 -0
- package/examples/with-vue-material/plugins/vue-material.js +4 -0
- package/examples/with-vuetify/README.md +11 -0
- package/examples/with-vuetify/assets/variabales.scss +1 -0
- package/examples/with-vuetify/layouts/default.vue +103 -0
- package/examples/with-vuetify/nuxt.config.js +25 -0
- package/examples/with-vuetify/package.json +16 -0
- package/examples/with-vuetify/pages/about.vue +18 -0
- package/examples/with-vuetify/pages/index.vue +11 -0
- package/examples/with-vuetify/vuetify.options.js +13 -0
- package/examples/with-vuikit/README.md +3 -0
- package/examples/with-vuikit/layouts/default.vue +5 -0
- package/examples/with-vuikit/nuxt.config.js +6 -0
- package/examples/with-vuikit/package.json +15 -0
- package/examples/with-vuikit/pages/index.vue +19 -0
- package/examples/with-vuikit/plugins/vuikit.js +6 -0
- package/examples/with-vux/README.md +3 -0
- package/examples/with-vux/layouts/default.vue +9 -0
- package/examples/with-vux/nuxt.config.js +40 -0
- package/examples/with-vux/package.json +20 -0
- package/examples/with-vux/pages/index.vue +22 -0
- package/examples/with-vux/plugins/vux-components.js +5 -0
- package/examples/with-vux/plugins/vux-plugins.js +12 -0
- package/examples/with-vux/styles/theme.less +1 -0
- package/jest.config.js +61 -0
- package/lerna.json +28 -0
- package/package.json +66 -0
- package/packages/babel-preset-app/README.md +120 -0
- package/packages/babel-preset-app/package.json +33 -0
- package/packages/babel-preset-app/src/index.js +187 -0
- package/packages/babel-preset-app/src/polyfills-plugin.js +37 -0
- package/packages/builder/package.js +7 -0
- package/packages/builder/package.json +30 -0
- package/packages/builder/src/builder.js +795 -0
- package/packages/builder/src/context/build.js +16 -0
- package/packages/builder/src/context/template.js +82 -0
- package/packages/builder/src/ignore.js +59 -0
- package/packages/builder/src/index.js +10 -0
- package/packages/builder/test/__utils__/index.js +24 -0
- package/packages/builder/test/builder.build.test.js +209 -0
- package/packages/builder/test/builder.common.test.js +59 -0
- package/packages/builder/test/builder.ctor.test.js +116 -0
- package/packages/builder/test/builder.generate.test.js +710 -0
- package/packages/builder/test/builder.plugin.test.js +189 -0
- package/packages/builder/test/builder.watch.test.js +435 -0
- package/packages/builder/test/context/__snapshots__/template.test.js.snap +117 -0
- package/packages/builder/test/context/build.test.js +38 -0
- package/packages/builder/test/context/template.test.js +87 -0
- package/packages/builder/test/ignore.test.js +147 -0
- package/packages/builder/test/index.test.js +9 -0
- package/packages/cli/bin/nuxt-cli.js +7 -0
- package/packages/cli/package.js +5 -0
- package/packages/cli/package.json +43 -0
- package/packages/cli/src/command.js +239 -0
- package/packages/cli/src/commands/build.js +92 -0
- package/packages/cli/src/commands/dev.js +116 -0
- package/packages/cli/src/commands/export.js +10 -0
- package/packages/cli/src/commands/generate.js +121 -0
- package/packages/cli/src/commands/help.js +29 -0
- package/packages/cli/src/commands/index.js +17 -0
- package/packages/cli/src/commands/serve.js +10 -0
- package/packages/cli/src/commands/start.js +27 -0
- package/packages/cli/src/commands/webpack.js +116 -0
- package/packages/cli/src/imports.js +18 -0
- package/packages/cli/src/index.js +16 -0
- package/packages/cli/src/list.js +35 -0
- package/packages/cli/src/options/common.js +68 -0
- package/packages/cli/src/options/index.js +9 -0
- package/packages/cli/src/options/locking.js +7 -0
- package/packages/cli/src/options/server.js +29 -0
- package/packages/cli/src/run.js +56 -0
- package/packages/cli/src/setup.js +41 -0
- package/packages/cli/src/utils/banner.js +60 -0
- package/packages/cli/src/utils/config.js +34 -0
- package/packages/cli/src/utils/constants.js +8 -0
- package/packages/cli/src/utils/dependencies.js +35 -0
- package/packages/cli/src/utils/dir.js +11 -0
- package/packages/cli/src/utils/formatting.js +69 -0
- package/packages/cli/src/utils/generate.js +185 -0
- package/packages/cli/src/utils/index.js +64 -0
- package/packages/cli/src/utils/memory.js +18 -0
- package/packages/cli/src/utils/serve.js +78 -0
- package/packages/cli/src/utils/webpack.js +11 -0
- package/packages/cli/test/fixtures/nuxt.async-config.js +9 -0
- package/packages/cli/test/fixtures/nuxt.async-error.js +1 -0
- package/packages/cli/test/fixtures/nuxt.config.js +10 -0
- package/packages/cli/test/fixtures/nuxt.fn-config.js +3 -0
- package/packages/cli/test/unit/__snapshots__/command.test.js.snap +46 -0
- package/packages/cli/test/unit/__snapshots__/webpack.test.js.snap +726 -0
- package/packages/cli/test/unit/build.test.js +148 -0
- package/packages/cli/test/unit/cli.test.js +47 -0
- package/packages/cli/test/unit/command.test.js +173 -0
- package/packages/cli/test/unit/dependencies.test.js +24 -0
- package/packages/cli/test/unit/dev.test.js +141 -0
- package/packages/cli/test/unit/export.test.js +118 -0
- package/packages/cli/test/unit/generate.test.js +162 -0
- package/packages/cli/test/unit/hooks.test.js +52 -0
- package/packages/cli/test/unit/imports.test.js +19 -0
- package/packages/cli/test/unit/list.test.js +57 -0
- package/packages/cli/test/unit/run-edge.test.js +18 -0
- package/packages/cli/test/unit/run.test.js +75 -0
- package/packages/cli/test/unit/serve.test.js +38 -0
- package/packages/cli/test/unit/start.test.js +68 -0
- package/packages/cli/test/unit/utils-minimalcli.test.js +33 -0
- package/packages/cli/test/unit/utils.test.js +273 -0
- package/packages/cli/test/unit/webpack.test.js +50 -0
- package/packages/cli/test/utils/index.js +14 -0
- package/packages/cli/test/utils/mocking.js +121 -0
- package/packages/config/index.d.ts +3 -0
- package/packages/config/package.js +3 -0
- package/packages/config/package.json +26 -0
- package/packages/config/src/config/_app.js +75 -0
- package/packages/config/src/config/_common.js +93 -0
- package/packages/config/src/config/build.js +136 -0
- package/packages/config/src/config/cli.js +4 -0
- package/packages/config/src/config/generate.js +23 -0
- package/packages/config/src/config/index.js +33 -0
- package/packages/config/src/config/messages.js +12 -0
- package/packages/config/src/config/modes.js +20 -0
- package/packages/config/src/config/render.js +45 -0
- package/packages/config/src/config/router.js +18 -0
- package/packages/config/src/config/server.js +14 -0
- package/packages/config/src/index.js +3 -0
- package/packages/config/src/load.js +189 -0
- package/packages/config/src/options.js +529 -0
- package/packages/config/test/__snapshots__/options.test.js.snap +432 -0
- package/packages/config/test/config/__snapshots__/index.test.js.snap +777 -0
- package/packages/config/test/config/_common.test.js +14 -0
- package/packages/config/test/config/build.test.js +32 -0
- package/packages/config/test/config/index.test.js +28 -0
- package/packages/config/test/config/render.test.js +19 -0
- package/packages/config/test/config/server.test.js +45 -0
- package/packages/config/test/fixtures/app.html +0 -0
- package/packages/config/test/fixtures/nuxtrc/.nuxtrc +1 -0
- package/packages/config/test/fixtures/store/index.js +0 -0
- package/packages/config/test/index.test.js +16 -0
- package/packages/config/test/load.test.js +10 -0
- package/packages/config/test/options.test.js +329 -0
- package/packages/core/package.js +3 -0
- package/packages/core/package.json +23 -0
- package/packages/core/src/index.js +5 -0
- package/packages/core/src/load.js +40 -0
- package/packages/core/src/module.js +219 -0
- package/packages/core/src/nuxt.js +125 -0
- package/packages/core/src/resolver.js +165 -0
- package/packages/core/test/__modules__/__resolver__.js +0 -0
- package/packages/core/test/index.test.js +17 -0
- package/packages/core/test/module.test.js +477 -0
- package/packages/core/test/nuxt.test.js +179 -0
- package/packages/core/test/resolver.test.js +424 -0
- package/packages/generator/package.js +3 -0
- package/packages/generator/package.json +24 -0
- package/packages/generator/src/generator.js +443 -0
- package/packages/generator/src/index.js +6 -0
- package/packages/generator/test/__utils__/index.js +27 -0
- package/packages/generator/test/generator.gen.test.js +201 -0
- package/packages/generator/test/generator.init.test.js +234 -0
- package/packages/generator/test/generator.route.test.js +245 -0
- package/packages/generator/test/index.test.js +11 -0
- package/packages/server/package.js +4 -0
- package/packages/server/package.json +32 -0
- package/packages/server/src/context.js +8 -0
- package/packages/server/src/index.js +2 -0
- package/packages/server/src/jsdom.js +75 -0
- package/packages/server/src/listener.js +120 -0
- package/packages/server/src/middleware/error.js +129 -0
- package/packages/server/src/middleware/nuxt.js +156 -0
- package/packages/server/src/middleware/timing.js +56 -0
- package/packages/server/src/server.js +427 -0
- package/packages/server/test/contest.test.js +17 -0
- package/packages/server/test/index.test.js +14 -0
- package/packages/server/test/listener.test.js +428 -0
- package/packages/server/test/middleware/error.test.js +221 -0
- package/packages/server/test/middleware/nuxt.test.js +352 -0
- package/packages/server/test/middleware/timing.test.js +103 -0
- package/packages/server/test/server.test.js +546 -0
- package/packages/types/README.md +8 -0
- package/packages/types/app/index.d.ts +179 -0
- package/packages/types/app/vue.d.ts +44 -0
- package/packages/types/app/vuex.d.ts +10 -0
- package/packages/types/cli/index.d.ts +8 -0
- package/packages/types/config/build.d.ts +185 -0
- package/packages/types/config/cli.d.ts +14 -0
- package/packages/types/config/env.d.ts +6 -0
- package/packages/types/config/features.d.ts +19 -0
- package/packages/types/config/fetch.d.ts +9 -0
- package/packages/types/config/generate.d.ts +28 -0
- package/packages/types/config/globals.d.ts +7 -0
- package/packages/types/config/head.d.ts +9 -0
- package/packages/types/config/hooks.d.ts +53 -0
- package/packages/types/config/index.d.ts +77 -0
- package/packages/types/config/loading.d.ts +27 -0
- package/packages/types/config/module.d.ts +31 -0
- package/packages/types/config/plugin.d.ts +7 -0
- package/packages/types/config/render.d.ts +76 -0
- package/packages/types/config/router.d.ts +27 -0
- package/packages/types/config/runtime.d.ts +15 -0
- package/packages/types/config/server-middleware.d.ts +10 -0
- package/packages/types/config/server.d.ts +15 -0
- package/packages/types/config/vue-configuration.d.ts +9 -0
- package/packages/types/config/watchers.d.ts +14 -0
- package/packages/types/index.d.ts +11 -0
- package/packages/types/index.js +1 -0
- package/packages/types/package.js +3 -0
- package/packages/types/package.json +37 -0
- package/packages/types/process.d.ts +14 -0
- package/packages/types/test/index.ts +2 -0
- package/packages/types/test/process.ts +17 -0
- package/packages/types/test/tsconfig.json +13 -0
- package/packages/types/test/vue.ts +112 -0
- package/packages/utils/package.js +3 -0
- package/packages/utils/package.json +27 -0
- package/packages/utils/src/cjs.js +98 -0
- package/packages/utils/src/constants.js +9 -0
- package/packages/utils/src/context.js +21 -0
- package/packages/utils/src/index.js +11 -0
- package/packages/utils/src/lang.js +40 -0
- package/packages/utils/src/locking.js +102 -0
- package/packages/utils/src/modern.js +61 -0
- package/packages/utils/src/resolve.js +110 -0
- package/packages/utils/src/route.js +280 -0
- package/packages/utils/src/serialize.js +52 -0
- package/packages/utils/src/task.js +40 -0
- package/packages/utils/src/timer.js +65 -0
- package/packages/utils/test/__snapshots__/route.test.js.snap +261 -0
- package/packages/utils/test/cjs.test.js +14 -0
- package/packages/utils/test/context.test.js +24 -0
- package/packages/utils/test/index.test.js +30 -0
- package/packages/utils/test/lang.test.js +55 -0
- package/packages/utils/test/locking.test.js +223 -0
- package/packages/utils/test/modern.test.js +60 -0
- package/packages/utils/test/resolve.posix.test.js +85 -0
- package/packages/utils/test/resolve.win.test.js +90 -0
- package/packages/utils/test/route.test.js +240 -0
- package/packages/utils/test/serialize.test.input.js +41 -0
- package/packages/utils/test/serialize.test.js +69 -0
- package/packages/utils/test/task.test.js +117 -0
- package/packages/utils/test/timer.test.js +165 -0
- package/packages/vue-app/index.d.ts +3 -0
- package/packages/vue-app/package.js +16 -0
- package/packages/vue-app/package.json +31 -0
- package/packages/vue-app/src/index.js +28 -0
- package/packages/vue-app/template/.eslintignore +3 -0
- package/packages/vue-app/template/App.js +347 -0
- package/packages/vue-app/template/client.js +951 -0
- package/packages/vue-app/template/components/nuxt-build-indicator.vue +143 -0
- package/packages/vue-app/template/components/nuxt-child.js +128 -0
- package/packages/vue-app/template/components/nuxt-error.vue +99 -0
- package/packages/vue-app/template/components/nuxt-link.client.js +128 -0
- package/packages/vue-app/template/components/nuxt-link.server.js +17 -0
- package/packages/vue-app/template/components/nuxt-loading.vue +177 -0
- package/packages/vue-app/template/components/nuxt.js +109 -0
- package/packages/vue-app/template/empty.js +1 -0
- package/packages/vue-app/template/index.js +298 -0
- package/packages/vue-app/template/jsonp.js +83 -0
- package/packages/vue-app/template/layouts/default.vue +3 -0
- package/packages/vue-app/template/middleware.js +12 -0
- package/packages/vue-app/template/mixins/fetch.client.js +134 -0
- package/packages/vue-app/template/mixins/fetch.server.js +70 -0
- package/packages/vue-app/template/pages/index.vue +108 -0
- package/packages/vue-app/template/router.js +123 -0
- package/packages/vue-app/template/router.scrollBehavior.js +82 -0
- package/packages/vue-app/template/routes.json +1 -0
- package/packages/vue-app/template/server.js +351 -0
- package/packages/vue-app/template/store.js +158 -0
- package/packages/vue-app/template/utils.js +639 -0
- package/packages/vue-app/template/views/app.template.html +9 -0
- package/packages/vue-app/template/views/error.html +23 -0
- package/packages/vue-app/template/views/loading/chasing-dots.html +67 -0
- package/packages/vue-app/template/views/loading/circle.html +150 -0
- package/packages/vue-app/template/views/loading/cube-grid.html +87 -0
- package/packages/vue-app/template/views/loading/default.html +110 -0
- package/packages/vue-app/template/views/loading/fading-circle.html +164 -0
- package/packages/vue-app/template/views/loading/folding-cube.html +108 -0
- package/packages/vue-app/template/views/loading/nuxt.html +59 -0
- package/packages/vue-app/template/views/loading/pulse.html +48 -0
- package/packages/vue-app/template/views/loading/rectangle-bounce.html +74 -0
- package/packages/vue-app/template/views/loading/rotating-plane.html +44 -0
- package/packages/vue-app/template/views/loading/three-bounce.html +61 -0
- package/packages/vue-app/template/views/loading/wandering-cubes.html +68 -0
- package/packages/vue-app/test/__utils__/index.js +73 -0
- package/packages/vue-app/test/nuxt-link.client.prefetch.test.js +153 -0
- package/packages/vue-app/test/nuxt-loading.test.js +189 -0
- package/packages/vue-app/vetur/nuxt-attributes.json +38 -0
- package/packages/vue-app/vetur/nuxt-tags.json +47 -0
- package/packages/vue-app/web-types/web-types.json +251 -0
- package/packages/vue-renderer/package.js +3 -0
- package/packages/vue-renderer/package.json +26 -0
- package/packages/vue-renderer/src/index.js +1 -0
- package/packages/vue-renderer/src/renderer.js +390 -0
- package/packages/vue-renderer/src/renderers/base.js +25 -0
- package/packages/vue-renderer/src/renderers/modern.js +124 -0
- package/packages/vue-renderer/src/renderers/spa.js +214 -0
- package/packages/vue-renderer/src/renderers/ssr.js +307 -0
- package/packages/webpack/package.js +21 -0
- package/packages/webpack/package.json +60 -0
- package/packages/webpack/src/builder.js +257 -0
- package/packages/webpack/src/config/base.js +538 -0
- package/packages/webpack/src/config/client.js +221 -0
- package/packages/webpack/src/config/index.js +3 -0
- package/packages/webpack/src/config/modern.js +15 -0
- package/packages/webpack/src/config/server.js +147 -0
- package/packages/webpack/src/index.js +1 -0
- package/packages/webpack/src/plugins/vue/client.js +111 -0
- package/packages/webpack/src/plugins/vue/cors.js +25 -0
- package/packages/webpack/src/plugins/vue/modern.js +121 -0
- package/packages/webpack/src/plugins/vue/server.js +71 -0
- package/packages/webpack/src/plugins/vue/util.js +31 -0
- package/packages/webpack/src/plugins/warning-ignore.js +11 -0
- package/packages/webpack/src/utils/async-mfs.js +24 -0
- package/packages/webpack/src/utils/index.js +3 -0
- package/packages/webpack/src/utils/perf-loader.js +66 -0
- package/packages/webpack/src/utils/postcss-v8.js +208 -0
- package/packages/webpack/src/utils/postcss.js +193 -0
- package/packages/webpack/src/utils/reserved-tags.js +23 -0
- package/packages/webpack/src/utils/style-loader.js +157 -0
- package/packages/webpack/test/index.test.js +23 -0
- package/renovate.json +27 -0
- package/scripts/builtins.js +22 -0
- package/scripts/changelog.js +154 -0
- package/scripts/dev.js +39 -0
- package/scripts/link.js +28 -0
- package/scripts/package.js +382 -0
- package/scripts/pkg.js +55 -0
- package/scripts/release-publish +14 -0
- package/scripts/release-version +4 -0
- package/scripts/rollup.config.js +67 -0
- package/scripts/workspace-run +10 -0
- package/test/dev/async-config.size-limit.test.js +45 -0
- package/test/dev/async-config.test.js +21 -0
- package/test/dev/basic.config.defaults.test.js +73 -0
- package/test/dev/basic.dev.test.js +204 -0
- package/test/dev/basic.dynamic.test.js +77 -0
- package/test/dev/basic.fail.generate.test.js +33 -0
- package/test/dev/basic.generate.test.js +286 -0
- package/test/dev/basic.plugins.test.js +51 -0
- package/test/dev/basic.relative.test.js +41 -0
- package/test/dev/basic.ssr.csp.test.js +477 -0
- package/test/dev/basic.ssr.test.js +426 -0
- package/test/dev/children.test.js +56 -0
- package/test/dev/cli.test.js +82 -0
- package/test/dev/custom-app-template.test.js +57 -0
- package/test/dev/custom-dirs.test.js +55 -0
- package/test/dev/dist-options.test.js +35 -0
- package/test/dev/dynamic-routes.test.js +90 -0
- package/test/dev/encoding.test.js +76 -0
- package/test/dev/error.test.js +83 -0
- package/test/dev/express.test.js +42 -0
- package/test/dev/extract-css.test.js +36 -0
- package/test/dev/fallback.test.js +44 -0
- package/test/dev/filenames-query-part.test.js +55 -0
- package/test/dev/full-static.test.js +89 -0
- package/test/dev/generator.test.js +86 -0
- package/test/dev/https.test.js +24 -0
- package/test/dev/modern.client.test.js +53 -0
- package/test/dev/modern.server.test.js +79 -0
- package/test/dev/modern.spa.test.js +75 -0
- package/test/dev/module.test.js +97 -0
- package/test/dev/named-views.test.js +43 -0
- package/test/dev/nuxt.test.js +66 -0
- package/test/dev/renderer.test.js +51 -0
- package/test/dev/route-name-splitter.test.js +20 -0
- package/test/dev/runtime-config.test.js +45 -0
- package/test/dev/server.listen.test.js +79 -0
- package/test/dev/sockets.test.js +16 -0
- package/test/dev/spa.test.js +174 -0
- package/test/dev/ssr.test.js +130 -0
- package/test/dev/trailing-slash-payload.test.js +64 -0
- package/test/dev/trailing-slash.test.js +92 -0
- package/test/dev/with-config.test.js +235 -0
- package/test/dev/wp.config.test.js +42 -0
- package/test/e2e/basic.browser.test.js +338 -0
- package/test/e2e/basic.vue-config.test.js +58 -0
- package/test/e2e/children.patch.browser.test.js +166 -0
- package/test/e2e/error.test.js +71 -0
- package/test/e2e/fetch.browser.test.js +216 -0
- package/test/e2e/page-transitions.browser.test.js +112 -0
- package/test/e2e/spa-base.browser.test.js +71 -0
- package/test/e2e/split-layouts-error.test.js +51 -0
- package/test/fixtures/async-config/async-config.test.js +3 -0
- package/test/fixtures/async-config/nuxt.config.js +15 -0
- package/test/fixtures/async-config/pages/index.vue +3 -0
- package/test/fixtures/basic/assets/app.css +1 -0
- package/test/fixtures/basic/assets/import.css +1 -0
- package/test/fixtures/basic/assets/test.svg +98 -0
- package/test/fixtures/basic/basic.test.js +3 -0
- package/test/fixtures/basic/components/MyComponent.vue +3 -0
- package/test/fixtures/basic/layouts/custom.js +10 -0
- package/test/fixtures/basic/layouts/default.vue +5 -0
- package/test/fixtures/basic/middleware/-ignored.js +3 -0
- package/test/fixtures/basic/middleware/error.js +3 -0
- package/test/fixtures/basic/middleware/ignored.test.js +3 -0
- package/test/fixtures/basic/middleware/meta.js +3 -0
- package/test/fixtures/basic/middleware/redirect.js +3 -0
- package/test/fixtures/basic/nuxt.config.js +104 -0
- package/test/fixtures/basic/pages/-ignored.vue +13 -0
- package/test/fixtures/basic/pages/async-data.vue +13 -0
- package/test/fixtures/basic/pages/await-async-data.vue +18 -0
- package/test/fixtures/basic/pages/callback-async-data.vue +13 -0
- package/test/fixtures/basic/pages/client-only.vue +7 -0
- package/test/fixtures/basic/pages/components.vue +5 -0
- package/test/fixtures/basic/pages/config.vue +29 -0
- package/test/fixtures/basic/pages/css.vue +15 -0
- package/test/fixtures/basic/pages/custom.js +6 -0
- package/test/fixtures/basic/pages/error-midd.vue +13 -0
- package/test/fixtures/basic/pages/error-object.vue +8 -0
- package/test/fixtures/basic/pages/error-string.vue +8 -0
- package/test/fixtures/basic/pages/error.vue +11 -0
- package/test/fixtures/basic/pages/error2.vue +11 -0
- package/test/fixtures/basic/pages/extractCSS.vue +9 -0
- package/test/fixtures/basic/pages/fetch.vue +50 -0
- package/test/fixtures/basic/pages/fn-midd.vue +17 -0
- package/test/fixtures/basic/pages/head.vue +28 -0
- package/test/fixtures/basic/pages/ignored.test.vue +13 -0
- package/test/fixtures/basic/pages/index.vue +6 -0
- package/test/fixtures/basic/pages/js-link.js +2 -0
- package/test/fixtures/basic/pages/js-link.vue +5 -0
- package/test/fixtures/basic/pages/jsx-link.js +5 -0
- package/test/fixtures/basic/pages/jsx-link2.jsx +5 -0
- package/test/fixtures/basic/pages/jsx.js +7 -0
- package/test/fixtures/basic/pages/meta.vue +12 -0
- package/test/fixtures/basic/pages/no-ssr.vue +7 -0
- package/test/fixtures/basic/pages/noloading.vue +27 -0
- package/test/fixtures/basic/pages/postcss.vue +15 -0
- package/test/fixtures/basic/pages/redirect-external-no-slash.vue +11 -0
- package/test/fixtures/basic/pages/redirect-external-root.vue +11 -0
- package/test/fixtures/basic/pages/redirect-external.vue +11 -0
- package/test/fixtures/basic/pages/redirect-middleware.vue +8 -0
- package/test/fixtures/basic/pages/redirect-name.vue +11 -0
- package/test/fixtures/basic/pages/redirect.vue +11 -0
- package/test/fixtures/basic/pages/redirection/_slug.vue +18 -0
- package/test/fixtures/basic/pages/refresh-page-data.vue +15 -0
- package/test/fixtures/basic/pages/router-guard-error.vue +3 -0
- package/test/fixtures/basic/pages/router-guard.vue +11 -0
- package/test/fixtures/basic/pages/scroll-to-top/index.vue +24 -0
- package/test/fixtures/basic/pages/scroll-to-top/scroll-to-top-false.vue +13 -0
- package/test/fixtures/basic/pages/scroll-to-top/scroll-to-top-true.vue +13 -0
- package/test/fixtures/basic/pages/scroll-to-top/watch-query-array.vue +19 -0
- package/test/fixtures/basic/pages/scroll-to-top/watch-query-fn.vue +24 -0
- package/test/fixtures/basic/pages/scroll-to-top/watch-query-true.vue +19 -0
- package/test/fixtures/basic/pages/skip-on-fail/fail.vue +11 -0
- package/test/fixtures/basic/pages/skip-on-fail/success.vue +8 -0
- package/test/fixtures/basic/pages/special-state.vue +15 -0
- package/test/fixtures/basic/pages/stateful.vue +16 -0
- package/test/fixtures/basic/pages/stateless.vue +3 -0
- package/test/fixtures/basic/pages/store-module.vue +11 -0
- package/test/fixtures/basic/pages/store.vue +27 -0
- package/test/fixtures/basic/pages/style.vue +18 -0
- package/test/fixtures/basic/pages/symlink/deep/nested-symlinked.vue +3 -0
- package/test/fixtures/basic/pages/symlink/symlinked.vue +3 -0
- package/test/fixtures/basic/pages/users/_id.vue +12 -0
- package/test/fixtures/basic/pages/validate-async.vue +21 -0
- package/test/fixtures/basic/pages/validate.vue +17 -0
- package/test/fixtures/basic/pages//321/202/320/265/321/201/321/202/351/233/250.vue +3 -0
- package/test/fixtures/basic/pages2/deep/nested-symlinked.vue +3 -0
- package/test/fixtures/basic/pages2/symlinked.vue +3 -0
- package/test/fixtures/basic/plugins/dir-plugin/index.js +3 -0
- package/test/fixtures/basic/plugins/inject.js +17 -0
- package/test/fixtures/basic/plugins/router-guard.js +17 -0
- package/test/fixtures/basic/plugins/tailwind.js +6 -0
- package/test/fixtures/basic/plugins/vuex-module.js +27 -0
- package/test/fixtures/basic/static/body.js +2 -0
- package/test/fixtures/basic/store/-ignored.js +1 -0
- package/test/fixtures/basic/store/bab/index.js +9 -0
- package/test/fixtures/basic/store/foo/bar.js +9 -0
- package/test/fixtures/basic/store/foo/blarg/getters.js +5 -0
- package/test/fixtures/basic/store/foo/blarg/index.js +9 -0
- package/test/fixtures/basic/store/foo/blarg/state.js +3 -0
- package/test/fixtures/basic/store/foo/blarg.js +9 -0
- package/test/fixtures/basic/store/ignored.test.js +1 -0
- package/test/fixtures/basic/store/index.js +13 -0
- package/test/fixtures/children/children.test.js +3 -0
- package/test/fixtures/children/layouts/patch.vue +62 -0
- package/test/fixtures/children/pages/parent/_id.vue +20 -0
- package/test/fixtures/children/pages/parent/child.vue +3 -0
- package/test/fixtures/children/pages/parent/validate-child.vue +11 -0
- package/test/fixtures/children/pages/parent.vue +23 -0
- package/test/fixtures/children/pages/patch/_id/child/_slug.vue +62 -0
- package/test/fixtures/children/pages/patch/_id/child.vue +20 -0
- package/test/fixtures/children/pages/patch/_id/index.vue +3 -0
- package/test/fixtures/children/pages/patch/_id/reuse/_slug.vue +20 -0
- package/test/fixtures/children/pages/patch/_id.vue +20 -0
- package/test/fixtures/children/pages/patch/index.vue +3 -0
- package/test/fixtures/children/pages/patch.vue +21 -0
- package/test/fixtures/cli/cli.build.config.js +17 -0
- package/test/fixtures/cli/cli.build.test.js +20 -0
- package/test/fixtures/cli/cli.gen.config.js +21 -0
- package/test/fixtures/cli/cli.gen.test.js +20 -0
- package/test/fixtures/cli/custom.file +1 -0
- package/test/fixtures/cli/middleware.js +1 -0
- package/test/fixtures/cli/nuxt.config.js +12 -0
- package/test/fixtures/cli/pages/index.vue +3 -0
- package/test/fixtures/config-explicit/config-explicit.test.js +3 -0
- package/test/fixtures/config-explicit/nuxt.config.js +13 -0
- package/test/fixtures/config-explicit/pages/config.vue +29 -0
- package/test/fixtures/custom-app-template/basic.test.js +3 -0
- package/test/fixtures/custom-app-template/nuxt.config.js +6 -0
- package/test/fixtures/custom-app-template/pages/index.vue +3 -0
- package/test/fixtures/custom-app-template/test/mytemplate.html +15 -0
- package/test/fixtures/custom-dirs/custom-assets/app.css +3 -0
- package/test/fixtures/custom-dirs/custom-dirs.test.js +3 -0
- package/test/fixtures/custom-dirs/custom-layouts/layouts/default.vue +6 -0
- package/test/fixtures/custom-dirs/custom-middleware/user-agent.js +3 -0
- package/test/fixtures/custom-dirs/custom-pages/index.vue +5 -0
- package/test/fixtures/custom-dirs/custom-pages/user-agent.vue +12 -0
- package/test/fixtures/custom-dirs/custom-static/test.txt +1 -0
- package/test/fixtures/custom-dirs/custom-store/index.js +17 -0
- package/test/fixtures/custom-dirs/nuxt.config.js +31 -0
- package/test/fixtures/dynamic-routes/dynamic-routes.test.js +3 -0
- package/test/fixtures/dynamic-routes/pages/_/_.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/_/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/_/p/_.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/_key/_id.vue +3 -0
- package/test/fixtures/dynamic-routes/pages/_slug.vue +3 -0
- package/test/fixtures/dynamic-routes/pages/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/parent/child.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/parent/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/parent/teub.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/parent.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/posts/_id.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/posts.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/_.vue +3 -0
- package/test/fixtures/dynamic-routes/pages/test/index.vue +3 -0
- package/test/fixtures/dynamic-routes/pages/test/projects/_category.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/projects/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/songs/_id.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/songs/toto.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users/_id.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users/_index/teub.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users/projects/_category.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users/projects/index.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/test/users.vue +0 -0
- package/test/fixtures/dynamic-routes/pages/users/_id.vue +0 -0
- package/test/fixtures/empty/empty.test.js +3 -0
- package/test/fixtures/empty/pages/.gitkeep +0 -0
- package/test/fixtures/encoding/encoding.test.js +3 -0
- package/test/fixtures/encoding/layouts/default.vue +51 -0
- package/test/fixtures/encoding/nuxt.config.js +12 -0
- package/test/fixtures/encoding/pages/@about.vue +5 -0
- package/test/fixtures/encoding/pages/dynamic/_id.vue +17 -0
- package/test/fixtures/encoding/pages/index.vue +5 -0
- package/test/fixtures/encoding/pages/redirect.vue +13 -0
- package/test/fixtures/encoding/pages//321/202/320/265/321/201/321/202.vue +3 -0
- package/test/fixtures/error/error.test.js +3 -0
- package/test/fixtures/error/layouts/error-layout.vue +12 -0
- package/test/fixtures/error/layouts/error.vue +18 -0
- package/test/fixtures/error/pages/about.vue +24 -0
- package/test/fixtures/error/pages/error.vue +10 -0
- package/test/fixtures/error/pages/index.vue +14 -0
- package/test/fixtures/error/pages/info.vue +19 -0
- package/test/fixtures/extract-css/assets/global.css +15 -0
- package/test/fixtures/extract-css/extract-css.test.js +3 -0
- package/test/fixtures/extract-css/layouts/default.vue +15 -0
- package/test/fixtures/extract-css/nuxt.config.js +25 -0
- package/test/fixtures/extract-css/pages/about.vue +13 -0
- package/test/fixtures/extract-css/pages/index.vue +36 -0
- package/test/fixtures/fetch/components/Team.vue +27 -0
- package/test/fixtures/fetch/fetch.test.js +3 -0
- package/test/fixtures/fetch/layouts/default.vue +80 -0
- package/test/fixtures/fetch/nuxt.config.js +1 -0
- package/test/fixtures/fetch/pages/fetch-button.vue +26 -0
- package/test/fixtures/fetch/pages/fetch-client.vue +22 -0
- package/test/fixtures/fetch/pages/fetch-component.vue +13 -0
- package/test/fixtures/fetch/pages/fetch-conditional.vue +29 -0
- package/test/fixtures/fetch/pages/fetch-deep.vue +35 -0
- package/test/fixtures/fetch/pages/fetch-delay.vue +24 -0
- package/test/fixtures/fetch/pages/fetch-error.vue +24 -0
- package/test/fixtures/fetch/pages/fetch-root.vue +21 -0
- package/test/fixtures/fetch/pages/index.vue +23 -0
- package/test/fixtures/fetch/pages/nested/_slug.vue +13 -0
- package/test/fixtures/fetch/pages/nested/index.vue +26 -0
- package/test/fixtures/fetch/pages/nested.vue +22 -0
- package/test/fixtures/fetch/pages/old-fetch.vue +18 -0
- package/test/fixtures/fetch/static/team.json +11 -0
- package/test/fixtures/fetch/store/index.js +9 -0
- package/test/fixtures/filenames-query-part/filenames-query-part.test.js +3 -0
- package/test/fixtures/filenames-query-part/nuxt.config.js +8 -0
- package/test/fixtures/filenames-query-part/pages/index.vue +5 -0
- package/test/fixtures/full-static/full-static.test.js +3 -0
- package/test/fixtures/full-static/layouts/default.vue +40 -0
- package/test/fixtures/full-static/nuxt.config.js +30 -0
- package/test/fixtures/full-static/pages/dynamic/_name.vue +10 -0
- package/test/fixtures/full-static/pages/encoding//344/270/255/346/226/207.vue +5 -0
- package/test/fixtures/full-static/pages/index.vue +5 -0
- package/test/fixtures/full-static/pages/pagination/_i.vue +21 -0
- package/test/fixtures/full-static/pages/payload.vue +13 -0
- package/test/fixtures/full-static/pages/store.vue +18 -0
- package/test/fixtures/full-static/store/auth.js +17 -0
- package/test/fixtures/full-static/store/index.js +9 -0
- package/test/fixtures/https/https.test.js +3 -0
- package/test/fixtures/https/nuxt.config.js +11 -0
- package/test/fixtures/https/pages/index.vue +3 -0
- package/test/fixtures/https/server.crt +19 -0
- package/test/fixtures/https/server.key +15 -0
- package/test/fixtures/missing-pages-dir/missing-pages-dir.test.js +10 -0
- package/test/fixtures/missing-plugin/nuxt.config.js +3 -0
- package/test/fixtures/missing-style-resource/nuxt.config.js +7 -0
- package/test/fixtures/modern/modern.test.js +3 -0
- package/test/fixtures/modern/nuxt.config.js +16 -0
- package/test/fixtures/modern/pages/index.vue +18 -0
- package/test/fixtures/module/layouts/layout.vue +6 -0
- package/test/fixtures/module/module.test.js +3 -0
- package/test/fixtures/module/modules/basic/index.js +30 -0
- package/test/fixtures/module/modules/basic/layout.vue +6 -0
- package/test/fixtures/module/modules/basic/reverse.js +14 -0
- package/test/fixtures/module/modules/empty/index.js +7 -0
- package/test/fixtures/module/modules/hooks/index.js +28 -0
- package/test/fixtures/module/modules/layout/index.js +6 -0
- package/test/fixtures/module/modules/layout/some-error.vue +3 -0
- package/test/fixtures/module/modules/middleware/index.js +21 -0
- package/test/fixtures/module/modules/middleware/log.js +5 -0
- package/test/fixtures/module/modules/middleware/midd1.js +4 -0
- package/test/fixtures/module/modules/middleware/midd2.js +4 -0
- package/test/fixtures/module/modules/middleware/midd3.js +7 -0
- package/test/fixtures/module/modules/middleware/use-middleware.js +3 -0
- package/test/fixtures/module/modules/template/index.js +12 -0
- package/test/fixtures/module/nuxt.config.js +34 -0
- package/test/fixtures/module/router.js +31 -0
- package/test/fixtures/module/views/about.vue +8 -0
- package/test/fixtures/module/views/index.vue +8 -0
- package/test/fixtures/module/views/layout.vue +10 -0
- package/test/fixtures/named-views/components/childLeft.vue +13 -0
- package/test/fixtures/named-views/components/mainTop.vue +13 -0
- package/test/fixtures/named-views/layouts/default.vue +6 -0
- package/test/fixtures/named-views/named-views.test.js +3 -0
- package/test/fixtures/named-views/nuxt.config.js +32 -0
- package/test/fixtures/named-views/pages/another.vue +6 -0
- package/test/fixtures/named-views/pages/index/child/_id/index.vue +21 -0
- package/test/fixtures/named-views/pages/index/section.vue +13 -0
- package/test/fixtures/named-views/pages/index.vue +16 -0
- package/test/fixtures/named-views/pages/main.vue +16 -0
- package/test/fixtures/page-transitions/layouts/default.vue +6 -0
- package/test/fixtures/page-transitions/page-transitions.test.js +3 -0
- package/test/fixtures/page-transitions/pages/callbacks/child.vue +11 -0
- package/test/fixtures/page-transitions/pages/callbacks.vue +12 -0
- package/test/fixtures/page-transitions/pages/index.vue +11 -0
- package/test/fixtures/page-transitions/pages/transition-properties/child.vue +18 -0
- package/test/fixtures/page-transitions/pages/transition-properties.vue +18 -0
- package/test/fixtures/page-transitions/utils/transition-properties.js +34 -0
- package/test/fixtures/route-name-splitter/nuxt.config.js +5 -0
- package/test/fixtures/route-name-splitter/pages/_/_.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/_/index.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/_/p/_.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/index.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/parent/child.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/parent/index.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/posts/_id.vue +0 -0
- package/test/fixtures/route-name-splitter/pages/posts.vue +0 -0
- package/test/fixtures/route-name-splitter/route-name-splitter.test.js +3 -0
- package/test/fixtures/runtime-config/.env +8 -0
- package/test/fixtures/runtime-config/nuxt.config.js +27 -0
- package/test/fixtures/runtime-config/pages/index.vue +30 -0
- package/test/fixtures/runtime-config/runtime-config.test.js +3 -0
- package/test/fixtures/shared-chunk/components/lazy.vue +13 -0
- package/test/fixtures/shared-chunk/components/shared-vendor.vue +9 -0
- package/test/fixtures/shared-chunk/components/shared.vue +5 -0
- package/test/fixtures/shared-chunk/nuxt.config.js +3 -0
- package/test/fixtures/shared-chunk/pages/_cat/_id/_sub.vue +6 -0
- package/test/fixtures/shared-chunk/pages/index.vue +14 -0
- package/test/fixtures/shared-chunk/pages/product/_identifier.vue +6 -0
- package/test/fixtures/sockets/nuxt.config.js +7 -0
- package/test/fixtures/sockets/pages/index.vue +3 -0
- package/test/fixtures/sockets/sockets.test.js +5 -0
- package/test/fixtures/spa/layouts/custom.vue +7 -0
- package/test/fixtures/spa/layouts/default.vue +7 -0
- package/test/fixtures/spa/middleware/middleware.js +14 -0
- package/test/fixtures/spa/nuxt.config.js +37 -0
- package/test/fixtures/spa/pages/async.vue +20 -0
- package/test/fixtures/spa/pages/custom.vue +15 -0
- package/test/fixtures/spa/pages/error-handler-async.vue +9 -0
- package/test/fixtures/spa/pages/error-handler-object.vue +8 -0
- package/test/fixtures/spa/pages/error-handler-string.vue +8 -0
- package/test/fixtures/spa/pages/error-handler.vue +8 -0
- package/test/fixtures/spa/pages/index.vue +12 -0
- package/test/fixtures/spa/pages/mounted.vue +20 -0
- package/test/fixtures/spa/pages/redirect-done.vue +17 -0
- package/test/fixtures/spa/pages/route-path.vue +3 -0
- package/test/fixtures/spa/pages//321/202/320/265/321/201/321/202/351/233/250.vue +11 -0
- package/test/fixtures/spa/plugins/error.js +5 -0
- package/test/fixtures/spa/plugins/path.js +4 -0
- package/test/fixtures/spa/spa.test.js +7 -0
- package/test/fixtures/spa-base/nuxt.config.js +13 -0
- package/test/fixtures/spa-hash/nuxt.config.js +13 -0
- package/test/fixtures/split-layouts-error/layouts/error-layout.vue +12 -0
- package/test/fixtures/split-layouts-error/layouts/error.vue +18 -0
- package/test/fixtures/split-layouts-error/nuxt.config.js +7 -0
- package/test/fixtures/split-layouts-error/pages/about.vue +8 -0
- package/test/fixtures/split-layouts-error/pages/error.vue +12 -0
- package/test/fixtures/split-layouts-error/pages/index.vue +14 -0
- package/test/fixtures/split-layouts-error/pages/info.vue +24 -0
- package/test/fixtures/split-layouts-error/split-layouts-error.test.js +3 -0
- package/test/fixtures/ssr/components/test.vue +15 -0
- package/test/fixtures/ssr/lib/db.js +4 -0
- package/test/fixtures/ssr/nuxt.config.js +8 -0
- package/test/fixtures/ssr/pages/asyncComponent.vue +15 -0
- package/test/fixtures/ssr/pages/asyncData.vue +15 -0
- package/test/fixtures/ssr/pages/component.vue +15 -0
- package/test/fixtures/ssr/pages/context/_id.vue +6 -0
- package/test/fixtures/ssr/pages/context.vue +10 -0
- package/test/fixtures/ssr/pages/data.vue +15 -0
- package/test/fixtures/ssr/pages/fetch.vue +14 -0
- package/test/fixtures/ssr/pages/store.vue +3 -0
- package/test/fixtures/ssr/ssr.test.js +3 -0
- package/test/fixtures/ssr/store/index.js +23 -0
- package/test/fixtures/trailing-slash/pages/index.vue +5 -0
- package/test/fixtures/trailing-slash/pages/posts/_slug.vue +16 -0
- package/test/fixtures/trailing-slash/pages/posts/index.vue +5 -0
- package/test/fixtures/trailing-slash/pages/posts.vue +6 -0
- package/test/fixtures/trailing-slash/trailing-slash.test.js +5 -0
- package/test/fixtures/trailing-slash/with-default/nuxt.config.js +10 -0
- package/test/fixtures/trailing-slash/with-false/nuxt.config.js +10 -0
- package/test/fixtures/trailing-slash/with-true/nuxt.config.js +10 -0
- package/test/fixtures/with-config/.nuxtignore +4 -0
- package/test/fixtures/with-config/app.html +10 -0
- package/test/fixtures/with-config/assets/app.pcss +10 -0
- package/test/fixtures/with-config/assets/app.sass +2 -0
- package/test/fixtures/with-config/assets/pre-process.css +3 -0
- package/test/fixtures/with-config/assets/roboto.woff2 +0 -0
- package/test/fixtures/with-config/components/loading.vue +36 -0
- package/test/fixtures/with-config/layouts/custom-env.vue +6 -0
- package/test/fixtures/with-config/layouts/custom.vue +6 -0
- package/test/fixtures/with-config/layouts/default.vue +6 -0
- package/test/fixtures/with-config/layouts/desktop/default.vue +6 -0
- package/test/fixtures/with-config/layouts/error.vue +9 -0
- package/test/fixtures/with-config/layouts/mobile/default.vue +6 -0
- package/test/fixtures/with-config/layouts/test-ignore.vue +1 -0
- package/test/fixtures/with-config/middleware/noop.js +3 -0
- package/test/fixtures/with-config/middleware/test-ignore.js +1 -0
- package/test/fixtures/with-config/middleware/user-agent.js +3 -0
- package/test/fixtures/with-config/nuxt.config.js +118 -0
- package/test/fixtures/with-config/pages/about.vue +18 -0
- package/test/fixtures/with-config/pages/desktop.vue +11 -0
- package/test/fixtures/with-config/pages/env.vue +23 -0
- package/test/fixtures/with-config/pages/error.vue +11 -0
- package/test/fixtures/with-config/pages/head.vue +13 -0
- package/test/fixtures/with-config/pages/index.vue +21 -0
- package/test/fixtures/with-config/pages/mobile.vue +11 -0
- package/test/fixtures/with-config/pages/test-ignore.vue +0 -0
- package/test/fixtures/with-config/pages/user-agent.vue +12 -0
- package/test/fixtures/with-config/plugins/doubled/index.js +1 -0
- package/test/fixtures/with-config/plugins/only-client.js +1 -0
- package/test/fixtures/with-config/plugins/test.client.js +1 -0
- package/test/fixtures/with-config/plugins/test.js +7 -0
- package/test/fixtures/with-config/plugins/test.json +0 -0
- package/test/fixtures/with-config/plugins/test.plugin.js +5 -0
- package/test/fixtures/with-config/plugins/test.server.js +1 -0
- package/test/fixtures/with-config/postcss.config.js +14 -0
- package/test/fixtures/with-config/static/test.txt +1 -0
- package/test/fixtures/with-config/store/index.js +17 -0
- package/test/fixtures/with-config/store/test-ignore.js +1 -0
- package/test/fixtures/with-config/with-config.test.js +38 -0
- package/test/utils/browser.js +110 -0
- package/test/utils/build.js +21 -0
- package/test/utils/index.js +30 -0
- package/test/utils/nuxt.js +35 -0
- package/test/utils/resource-size.js +35 -0
- package/test/utils/setup-env.js +35 -0
- package/test/utils/setup.js +6 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
import consola from 'consola'
|
2
|
+
|
3
|
+
import {
|
4
|
+
startsWithAlias, startsWithSrcAlias, wp, wChunk,
|
5
|
+
relativeTo, defineAlias, isIndexFileAndFolder, getMainModule
|
6
|
+
} from '../src/resolve'
|
7
|
+
|
8
|
+
describe.posix('util: resolve', () => {
|
9
|
+
test('should check if path starts with alias', () => {
|
10
|
+
expect(startsWithAlias(['/var'])('/var/nuxt/src')).toEqual(true)
|
11
|
+
})
|
12
|
+
|
13
|
+
test('should check if path starts with root alias', () => {
|
14
|
+
expect(startsWithSrcAlias('@/assets')).toEqual(true)
|
15
|
+
expect(startsWithSrcAlias('~/pages')).toEqual(true)
|
16
|
+
})
|
17
|
+
|
18
|
+
test('should check if path starts with src alias', () => {
|
19
|
+
expect(startsWithSrcAlias('@@/src/assets')).toEqual(true)
|
20
|
+
expect(startsWithSrcAlias('~~/src/pages')).toEqual(true)
|
21
|
+
})
|
22
|
+
|
23
|
+
test('should return same path in linux', () => {
|
24
|
+
expect(wp('/var/nuxt\\ src/')).toEqual('/var/nuxt\\ src/')
|
25
|
+
})
|
26
|
+
|
27
|
+
test('should return same path in linux', () => {
|
28
|
+
expect(wChunk('nuxt/layout/test')).toEqual('nuxt/layout/test')
|
29
|
+
})
|
30
|
+
|
31
|
+
test('should define alias', () => {
|
32
|
+
const nuxt = {}
|
33
|
+
const server = {
|
34
|
+
name: 'nuxt',
|
35
|
+
bound: () => 'bound fn',
|
36
|
+
test: () => 'test defineAlias'
|
37
|
+
}
|
38
|
+
|
39
|
+
defineAlias(nuxt, server, ['name', 'bound'])
|
40
|
+
defineAlias(nuxt, server, ['test'], { bind: false, warn: true })
|
41
|
+
|
42
|
+
expect(nuxt.name).toEqual(server.name)
|
43
|
+
expect(nuxt.bound).not.toBe(server.bound)
|
44
|
+
expect(nuxt.bound()).toEqual('bound fn')
|
45
|
+
expect(nuxt.test).toBe(server.test)
|
46
|
+
expect(nuxt.test()).toEqual('test defineAlias')
|
47
|
+
expect(consola.warn).toBeCalledTimes(1)
|
48
|
+
expect(consola.warn).toBeCalledWith({
|
49
|
+
message: '\'test\' is deprecated\'',
|
50
|
+
additional: expect.any(String)
|
51
|
+
})
|
52
|
+
})
|
53
|
+
|
54
|
+
test('should check if given argument is index file or folder', () => {
|
55
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test'])).toEqual(false)
|
56
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test/index.js'])).toEqual(false)
|
57
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test', '/var/nuxt/plugins/test/index.js'])).toEqual(true)
|
58
|
+
})
|
59
|
+
|
60
|
+
test('should return main module', () => {
|
61
|
+
expect(getMainModule()).toHaveProperty('children', 'exports', 'filename', 'path')
|
62
|
+
})
|
63
|
+
|
64
|
+
describe('relativeTo', () => {
|
65
|
+
const path1 = '@/foo'
|
66
|
+
const path2 = '@/bar'
|
67
|
+
|
68
|
+
test('should resolve alias path', () => {
|
69
|
+
expect(relativeTo(path1, path2)).toBe('@/bar')
|
70
|
+
})
|
71
|
+
|
72
|
+
test('should keep webpack inline loaders prepended', () => {
|
73
|
+
expect(relativeTo(path1, `loader1!loader2!${path2}`))
|
74
|
+
.toEqual('loader1!loader2!@/bar')
|
75
|
+
})
|
76
|
+
|
77
|
+
test('should check path which is not started with alias', () => {
|
78
|
+
expect(relativeTo('/var/nuxt/foo/bar', '/var/nuxt/foo/baz')).toBe('../baz')
|
79
|
+
})
|
80
|
+
|
81
|
+
test('should check path which is not started with alias ', () => {
|
82
|
+
expect(relativeTo('/var/nuxt/foo', '/var/nuxt/foo/bar')).toBe('./bar')
|
83
|
+
})
|
84
|
+
})
|
85
|
+
})
|
@@ -0,0 +1,90 @@
|
|
1
|
+
import consola from 'consola'
|
2
|
+
|
3
|
+
import {
|
4
|
+
wp, wChunk, r, relativeTo,
|
5
|
+
startsWithAlias, startsWithSrcAlias,
|
6
|
+
defineAlias, isIndexFileAndFolder, getMainModule
|
7
|
+
} from '../src/resolve'
|
8
|
+
|
9
|
+
describe.win('util: resolve windows', () => {
|
10
|
+
test('should format windows separator', () => {
|
11
|
+
expect(wp('c:\\nuxt\\src')).toEqual('c:\\\\nuxt\\\\src')
|
12
|
+
})
|
13
|
+
|
14
|
+
test('should format windows path', () => {
|
15
|
+
expect(wChunk('nuxt/layout/test')).toEqual('nuxt/layout/test')
|
16
|
+
})
|
17
|
+
|
18
|
+
test('should resolve alias path', () => {
|
19
|
+
expect(r('@\\layout\\test')).toEqual('@\\\\layout\\\\test')
|
20
|
+
})
|
21
|
+
|
22
|
+
test('should check if path starts with alias', () => {
|
23
|
+
expect(startsWithAlias(['#'])('#layout/test')).toEqual(true)
|
24
|
+
})
|
25
|
+
|
26
|
+
test('should check if path starts with root alias', () => {
|
27
|
+
expect(startsWithSrcAlias('@/assets')).toEqual(true)
|
28
|
+
expect(startsWithSrcAlias('~/pages')).toEqual(true)
|
29
|
+
})
|
30
|
+
|
31
|
+
test('should check if path starts with src alias', () => {
|
32
|
+
expect(startsWithSrcAlias('@@/src/assets')).toEqual(true)
|
33
|
+
expect(startsWithSrcAlias('~~/src/pages')).toEqual(true)
|
34
|
+
})
|
35
|
+
|
36
|
+
test('should define alias', () => {
|
37
|
+
const nuxt = {}
|
38
|
+
const server = {
|
39
|
+
name: 'nuxt',
|
40
|
+
bound: () => 'bound fn',
|
41
|
+
test: () => 'test defineAlias'
|
42
|
+
}
|
43
|
+
|
44
|
+
defineAlias(nuxt, server, ['name', 'bound'])
|
45
|
+
defineAlias(nuxt, server, ['test'], { bind: false, warn: true })
|
46
|
+
|
47
|
+
expect(nuxt.name).toEqual(server.name)
|
48
|
+
expect(nuxt.bound).not.toBe(server.bound)
|
49
|
+
expect(nuxt.bound()).toEqual('bound fn')
|
50
|
+
expect(nuxt.test).toBe(server.test)
|
51
|
+
expect(nuxt.test()).toEqual('test defineAlias')
|
52
|
+
expect(consola.warn).toBeCalledTimes(1)
|
53
|
+
expect(consola.warn).toBeCalledWith({
|
54
|
+
message: '\'test\' is deprecated\'',
|
55
|
+
additional: expect.any(String)
|
56
|
+
})
|
57
|
+
})
|
58
|
+
|
59
|
+
test('should check if given argument is index file or folder', () => {
|
60
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test'])).toEqual(false)
|
61
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test/index.js'])).toEqual(false)
|
62
|
+
expect(isIndexFileAndFolder(['/var/nuxt/plugins/test', '/var/nuxt/plugins/test/index.js'])).toEqual(true)
|
63
|
+
})
|
64
|
+
|
65
|
+
test('should return main module', () => {
|
66
|
+
expect(getMainModule()).toHaveProperty('children', 'exports', 'filename', 'path')
|
67
|
+
})
|
68
|
+
|
69
|
+
describe('relativeTo', () => {
|
70
|
+
const path1 = '@\\foo'
|
71
|
+
const path2 = '@\\bar'
|
72
|
+
|
73
|
+
test('should resolve alias path', () => {
|
74
|
+
expect(relativeTo(path1, path2)).toBe('@\\\\bar')
|
75
|
+
})
|
76
|
+
|
77
|
+
test('should keep webpack inline loaders prepended', () => {
|
78
|
+
expect(relativeTo(path1, `loader1!loader2!${path2}`))
|
79
|
+
.toBe('loader1!loader2!@\\\\bar')
|
80
|
+
})
|
81
|
+
|
82
|
+
test('should check path which is not started with alias', () => {
|
83
|
+
expect(relativeTo('c:\\foo\\bar', 'c:\\foo\\baz')).toBe('..\\\\baz')
|
84
|
+
})
|
85
|
+
|
86
|
+
test('should check path which is not started with alias ', () => {
|
87
|
+
expect(relativeTo('c:\\foo', 'c:\\foo\\baz')).toBe('.\\\\baz')
|
88
|
+
})
|
89
|
+
})
|
90
|
+
})
|
@@ -0,0 +1,240 @@
|
|
1
|
+
import { flatRoutes, createRoutes, guardDir, promisifyRoute } from '../src/route'
|
2
|
+
|
3
|
+
describe('util: route', () => {
|
4
|
+
test('should flat route with path', () => {
|
5
|
+
const routes = flatRoutes([
|
6
|
+
{ name: 'login', path: '/login' },
|
7
|
+
{ name: 'about', path: '/about' },
|
8
|
+
{
|
9
|
+
name: 'posts',
|
10
|
+
path: '',
|
11
|
+
children: [
|
12
|
+
{ name: 'posts-list', path: '' },
|
13
|
+
{ name: 'posts-create', path: 'post' }
|
14
|
+
]
|
15
|
+
}
|
16
|
+
])
|
17
|
+
expect(routes).toEqual(['/login', '/about', '/', '/post'])
|
18
|
+
})
|
19
|
+
|
20
|
+
test('should ignore route with * and :', () => {
|
21
|
+
const routes = flatRoutes([
|
22
|
+
{ name: 'login', path: '/login' },
|
23
|
+
{ name: 'foo', path: '/foo/:id' },
|
24
|
+
{ name: 'bar', path: '/bar/*' }
|
25
|
+
])
|
26
|
+
expect(routes).toEqual(['/login'])
|
27
|
+
})
|
28
|
+
|
29
|
+
test('should resolve route with /', () => {
|
30
|
+
const routes = flatRoutes([
|
31
|
+
{
|
32
|
+
name: 'foo',
|
33
|
+
path: '/',
|
34
|
+
children: [
|
35
|
+
{ name: 'foo-bar', path: 'foo/bar' },
|
36
|
+
{ name: 'foo-baz', path: 'foo/baz' }
|
37
|
+
]
|
38
|
+
}
|
39
|
+
])
|
40
|
+
expect(routes).toEqual(['/', '/foo/bar', '/foo/baz'])
|
41
|
+
})
|
42
|
+
|
43
|
+
test('should flat absolute routes', () => {
|
44
|
+
const routes = flatRoutes([
|
45
|
+
{
|
46
|
+
name: 'foo',
|
47
|
+
path: '/foo',
|
48
|
+
children: [
|
49
|
+
{ name: 'foo-bar', path: '/foo/bar' },
|
50
|
+
{ name: 'foo-baz', path: '/foo/baz' }
|
51
|
+
]
|
52
|
+
}
|
53
|
+
])
|
54
|
+
|
55
|
+
expect(routes).toEqual(['/foo', '/foo/bar', '/foo/baz'])
|
56
|
+
})
|
57
|
+
|
58
|
+
test('should flat absolute routes with empty path', () => {
|
59
|
+
const routes = flatRoutes([
|
60
|
+
{
|
61
|
+
name: 'foo',
|
62
|
+
path: '/foo',
|
63
|
+
children: [
|
64
|
+
{ name: 'foo-root', path: '' },
|
65
|
+
{ name: 'foo-bar', path: '/foo/bar' },
|
66
|
+
{ name: 'foo-baz', path: '/foo/baz' }
|
67
|
+
]
|
68
|
+
}
|
69
|
+
])
|
70
|
+
|
71
|
+
expect(routes).toEqual(['/foo', '/foo/bar', '/foo/baz'])
|
72
|
+
})
|
73
|
+
|
74
|
+
describe('util: route guard', () => {
|
75
|
+
test('should guard parent dir', () => {
|
76
|
+
expect(() => {
|
77
|
+
guardDir({ dir1: '/root/parent', dir2: '/root' }, 'dir1', 'dir2')
|
78
|
+
}).toThrow()
|
79
|
+
})
|
80
|
+
|
81
|
+
test('should guard same dir', () => {
|
82
|
+
expect(() => {
|
83
|
+
guardDir({ dir1: '/root/parent', dir2: '/root/parent' }, 'dir1', 'dir2')
|
84
|
+
}).toThrow()
|
85
|
+
})
|
86
|
+
|
87
|
+
test('should not guard same level dir', () => {
|
88
|
+
expect(() => {
|
89
|
+
guardDir({ dir1: '/root/parent-next', dir2: '/root/parent' }, 'dir1', 'dir2')
|
90
|
+
}).not.toThrow()
|
91
|
+
})
|
92
|
+
|
93
|
+
test('should not guard same level dir - 2', () => {
|
94
|
+
expect(() => {
|
95
|
+
guardDir({ dir1: '/root/parent', dir2: '/root/parent-next' }, 'dir1', 'dir2')
|
96
|
+
}).not.toThrow()
|
97
|
+
})
|
98
|
+
|
99
|
+
test('should not guard child dir', () => {
|
100
|
+
expect(() => {
|
101
|
+
guardDir({ dir1: '/root/parent', dir2: '/root/parent/child' }, 'dir1', 'dir2')
|
102
|
+
}).not.toThrow()
|
103
|
+
})
|
104
|
+
})
|
105
|
+
|
106
|
+
describe('util: route promisifyRoute', () => {
|
107
|
+
test('should promisify array routes', () => {
|
108
|
+
const array = [1]
|
109
|
+
const promise = promisifyRoute(array)
|
110
|
+
expect(typeof promise).toBe('object')
|
111
|
+
return promise.then((res) => {
|
112
|
+
expect(res).toBe(array)
|
113
|
+
})
|
114
|
+
})
|
115
|
+
|
116
|
+
test('should promisify functional routes', () => {
|
117
|
+
const array = [1, 2]
|
118
|
+
const fn = function () {
|
119
|
+
return array
|
120
|
+
}
|
121
|
+
const promise = promisifyRoute(fn)
|
122
|
+
expect(typeof promise).toBe('object')
|
123
|
+
return promise.then((res) => {
|
124
|
+
expect(res).toBe(array)
|
125
|
+
})
|
126
|
+
})
|
127
|
+
|
128
|
+
test('should promisify promisable functional routes', () => {
|
129
|
+
const array = [1, 2, 3]
|
130
|
+
const fn = function () {
|
131
|
+
return new Promise((resolve) => {
|
132
|
+
resolve(array)
|
133
|
+
})
|
134
|
+
}
|
135
|
+
const promise = promisifyRoute(fn)
|
136
|
+
expect(typeof promise).toBe('object')
|
137
|
+
return promise.then((res) => {
|
138
|
+
expect(res).toBe(array)
|
139
|
+
})
|
140
|
+
})
|
141
|
+
|
142
|
+
test('should promisify promisable functional routes with arguments', () => {
|
143
|
+
const fn = function (array) {
|
144
|
+
return new Promise((resolve) => {
|
145
|
+
resolve(array)
|
146
|
+
})
|
147
|
+
}
|
148
|
+
const array = [1, 2, 3]
|
149
|
+
const promise = promisifyRoute(fn, array)
|
150
|
+
expect(typeof promise).toBe('object')
|
151
|
+
return promise.then((res) => {
|
152
|
+
expect(res).toBe(array)
|
153
|
+
})
|
154
|
+
})
|
155
|
+
|
156
|
+
test('should promisify functional routes with error', () => {
|
157
|
+
const fn = function (cb) {
|
158
|
+
cb(new Error('Error here'))
|
159
|
+
}
|
160
|
+
const promise = promisifyRoute(fn)
|
161
|
+
expect(typeof promise).toBe('object')
|
162
|
+
return promise.catch((e) => {
|
163
|
+
expect(e.message).toBe('Error here')
|
164
|
+
})
|
165
|
+
})
|
166
|
+
|
167
|
+
test('should promisify functional routes with arguments and error', () => {
|
168
|
+
const fn = function (cb, array) {
|
169
|
+
cb(new Error('Error here: ' + array.join()))
|
170
|
+
}
|
171
|
+
const array = [1, 2, 3, 4]
|
172
|
+
const promise = promisifyRoute(fn, array)
|
173
|
+
expect(typeof promise).toBe('object')
|
174
|
+
return promise.catch((e) => {
|
175
|
+
expect(e.message).toBe('Error here: ' + array.join())
|
176
|
+
})
|
177
|
+
})
|
178
|
+
|
179
|
+
test('should promisify functional routes with result', () => {
|
180
|
+
const array = [1, 2, 3, 4]
|
181
|
+
const fn = function (cb) {
|
182
|
+
cb(null, array)
|
183
|
+
}
|
184
|
+
const promise = promisifyRoute(fn)
|
185
|
+
expect(typeof promise).toBe('object')
|
186
|
+
return promise.then((res) => {
|
187
|
+
expect(res).toBe(array)
|
188
|
+
})
|
189
|
+
})
|
190
|
+
|
191
|
+
test('should promisify functional routes with arguments and result', () => {
|
192
|
+
const fn = function (cb, array, object) {
|
193
|
+
cb(null, { array, object })
|
194
|
+
}
|
195
|
+
const array = [1, 2, 3, 4]
|
196
|
+
const object = { a: 1 }
|
197
|
+
const promise = promisifyRoute(fn, array, object)
|
198
|
+
expect(typeof promise).toBe('object')
|
199
|
+
return promise.then((res) => {
|
200
|
+
expect(res.array).toBe(array)
|
201
|
+
expect(res.object).toBe(object)
|
202
|
+
})
|
203
|
+
})
|
204
|
+
})
|
205
|
+
|
206
|
+
describe('util: route create', () => {
|
207
|
+
const files = [
|
208
|
+
'pages/index.vue',
|
209
|
+
'pages/_param.vue',
|
210
|
+
'pages/subpage/_param.vue',
|
211
|
+
'pages/snake_case_route.vue',
|
212
|
+
'pages/another_route/_id.vue',
|
213
|
+
'pages/parent/index.vue',
|
214
|
+
'pages/parent/child/index.vue',
|
215
|
+
'pages/parent/child/test.vue'
|
216
|
+
]
|
217
|
+
const srcDir = '/some/nuxt/app'
|
218
|
+
const pagesDir = 'pages'
|
219
|
+
|
220
|
+
test.posix('createRoutes should allow snake case routes in posix system', () => {
|
221
|
+
const routesResult = createRoutes({ files, srcDir, pagesDir })
|
222
|
+
expect(routesResult).toMatchSnapshot()
|
223
|
+
})
|
224
|
+
|
225
|
+
test.win('createRoutes should allow snake case routes in windows system', () => {
|
226
|
+
const routesResult = createRoutes({ files, srcDir, pagesDir })
|
227
|
+
expect(routesResult).toMatchSnapshot()
|
228
|
+
})
|
229
|
+
|
230
|
+
test.posix('createRoutes should enforce trailing slashes when configured to', () => {
|
231
|
+
const routesResult = createRoutes({ files, srcDir, pagesDir, trailingSlash: true })
|
232
|
+
expect(routesResult).toMatchSnapshot()
|
233
|
+
})
|
234
|
+
|
235
|
+
test.posix('createRoutes should remove trailing slashes when configured to', () => {
|
236
|
+
const routesResult = createRoutes({ files, srcDir, pagesDir, trailingSlash: false })
|
237
|
+
expect(routesResult).toMatchSnapshot()
|
238
|
+
})
|
239
|
+
})
|
240
|
+
})
|
@@ -0,0 +1,41 @@
|
|
1
|
+
// NOTE: This file is excluded from being transformed by babel-jest and needs to use the CommonJS syntax.
|
2
|
+
|
3
|
+
module.exports = {
|
4
|
+
arrow: {
|
5
|
+
// eslint-disable-next-line arrow-parens
|
6
|
+
fn1: foobar => {},
|
7
|
+
fn2: foobar => 1,
|
8
|
+
// eslint-disable-next-line arrow-parens
|
9
|
+
fn3: foobar => {
|
10
|
+
return 3
|
11
|
+
},
|
12
|
+
// eslint-disable-next-line arrow-parens
|
13
|
+
fn4: arg1 =>
|
14
|
+
2 * arg1,
|
15
|
+
fn5: () => {},
|
16
|
+
// eslint-disable-next-line arrow-parens
|
17
|
+
fn6: foobar => (foobar ? 1 : 0)
|
18
|
+
},
|
19
|
+
normal: {
|
20
|
+
fn: function () {} // eslint-disable-line object-shorthand
|
21
|
+
},
|
22
|
+
shorthand: {
|
23
|
+
fn () {},
|
24
|
+
// eslint-disable-next-line space-before-function-paren
|
25
|
+
$fn() {},
|
26
|
+
// eslint-disable-next-line no-unused-vars
|
27
|
+
fn_arrow () { const _ = rule => rule },
|
28
|
+
fn_script () {
|
29
|
+
return 'function xyz(){};a=false?true:xyz();'
|
30
|
+
},
|
31
|
+
fn_internal (arg) {
|
32
|
+
if (arg) {
|
33
|
+
return {
|
34
|
+
title () {
|
35
|
+
return 'test'
|
36
|
+
}
|
37
|
+
}
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
import { serializeFunction, normalizeFunctions } from '../src/serialize'
|
2
|
+
import data from './serialize.test.input'
|
3
|
+
|
4
|
+
const RE_LINE_BREAKS = /[\r\n]+/g
|
5
|
+
|
6
|
+
describe('util: serialize', () => {
|
7
|
+
test('should normalize arrow functions', () => {
|
8
|
+
const normalized = normalizeFunctions(Object.assign({}, data.arrow))
|
9
|
+
expect(normalized.fn1.toString()).toEqual('function anonymous(foobar\n) {\n\n}')
|
10
|
+
expect(normalized.fn2.toString()).toEqual('function anonymous(foobar\n) {\nreturn 1\n}')
|
11
|
+
expect(normalized.fn3.toString()).toEqual('function anonymous(foobar\n) {\nreturn 3\n}')
|
12
|
+
expect(normalized.fn4.toString()).toEqual('function anonymous(arg1\n) {\nreturn 2 * arg1\n}')
|
13
|
+
})
|
14
|
+
|
15
|
+
test('should serialize normal function', () => {
|
16
|
+
const obj = Object.assign({}, data.normal)
|
17
|
+
expect(serializeFunction(obj.fn)).toEqual('function () {}')
|
18
|
+
})
|
19
|
+
|
20
|
+
test('should serialize shorthand function', () => {
|
21
|
+
const obj = Object.assign({}, data.shorthand)
|
22
|
+
expect(serializeFunction(obj.fn)).toEqual('function() {}')
|
23
|
+
expect(serializeFunction(obj.$fn)).toEqual('function() {}')
|
24
|
+
expect(serializeFunction(obj.fn_arrow)).toEqual('function() { const _ = rule => rule }')
|
25
|
+
})
|
26
|
+
|
27
|
+
test('should serialize arrow function', () => {
|
28
|
+
const obj = Object.assign({}, data.arrow)
|
29
|
+
expect(serializeFunction(obj.fn5)).toEqual('() => {}')
|
30
|
+
})
|
31
|
+
|
32
|
+
test('should serialize arrow function with ternary in parens', () => {
|
33
|
+
const obj = Object.assign({}, data.arrow)
|
34
|
+
expect(serializeFunction(obj.fn6)).toEqual('foobar => (foobar ? 1 : 0)')
|
35
|
+
})
|
36
|
+
|
37
|
+
test('should serialize arrow function with single parameter', () => {
|
38
|
+
const obj = Object.assign({}, data.arrow)
|
39
|
+
expect(serializeFunction(obj.fn1)).toEqual('foobar => {}')
|
40
|
+
expect(serializeFunction(obj.fn2)).toEqual('foobar => 1')
|
41
|
+
expect(serializeFunction(obj.fn3).replace(RE_LINE_BREAKS, '\n')).toEqual(`foobar => {
|
42
|
+
return 3
|
43
|
+
}`)
|
44
|
+
expect(serializeFunction(obj.fn4).replace(RE_LINE_BREAKS, '\n')).toEqual(`arg1 =>
|
45
|
+
2 * arg1`)
|
46
|
+
})
|
47
|
+
|
48
|
+
test('should not replace custom scripts', () => {
|
49
|
+
const obj = Object.assign({}, data.shorthand)
|
50
|
+
|
51
|
+
expect(serializeFunction(obj.fn_script).replace(RE_LINE_BREAKS, '\n')).toEqual(`function() {
|
52
|
+
return 'function xyz(){};a=false?true:xyz();'
|
53
|
+
}`)
|
54
|
+
})
|
55
|
+
|
56
|
+
test('should serialize internal function', () => {
|
57
|
+
const obj = Object.assign({}, data.shorthand)
|
58
|
+
|
59
|
+
expect(serializeFunction(obj.fn_internal).replace(RE_LINE_BREAKS, '\n')).toEqual(`function(arg) {
|
60
|
+
if (arg) {
|
61
|
+
return {
|
62
|
+
title: function () {
|
63
|
+
return 'test'
|
64
|
+
}
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}`)
|
68
|
+
})
|
69
|
+
})
|
@@ -0,0 +1,117 @@
|
|
1
|
+
import consola from 'consola'
|
2
|
+
import { sequence, parallel, chainFn } from '../src/task'
|
3
|
+
|
4
|
+
describe('util: task', () => {
|
5
|
+
beforeEach(() => {
|
6
|
+
jest.clearAllMocks()
|
7
|
+
})
|
8
|
+
|
9
|
+
test('should call fn in sequence', async () => {
|
10
|
+
const fn = jest.fn(consola.log)
|
11
|
+
await sequence([1, 2, 3, 4], fn)
|
12
|
+
|
13
|
+
expect(fn).toBeCalledTimes(4)
|
14
|
+
expect(consola.log).toBeCalledTimes(4)
|
15
|
+
expect(consola.log).nthCalledWith(1, 1)
|
16
|
+
expect(consola.log).nthCalledWith(2, 2)
|
17
|
+
expect(consola.log).nthCalledWith(3, 3)
|
18
|
+
expect(consola.log).nthCalledWith(4, 4)
|
19
|
+
})
|
20
|
+
|
21
|
+
test('should call fn in parallel', async () => {
|
22
|
+
jest.spyOn(Promise, 'all')
|
23
|
+
jest.spyOn(Promise, 'resolve')
|
24
|
+
|
25
|
+
await parallel([1, 2, 3, 4], (num, index) => [num, index])
|
26
|
+
|
27
|
+
expect(Promise.all).toBeCalledTimes(1)
|
28
|
+
expect(Promise.resolve).toBeCalledTimes(4)
|
29
|
+
expect(Promise.resolve).nthCalledWith(1, [1, 0])
|
30
|
+
expect(Promise.resolve).nthCalledWith(2, [2, 1])
|
31
|
+
expect(Promise.resolve).nthCalledWith(3, [3, 2])
|
32
|
+
expect(Promise.resolve).nthCalledWith(4, [4, 3])
|
33
|
+
|
34
|
+
Promise.all.mockRestore()
|
35
|
+
Promise.resolve.mockRestore()
|
36
|
+
})
|
37
|
+
|
38
|
+
test('chainFn (mutate, mutate)', () => {
|
39
|
+
// Pass more than one argument to test that they're actually taken into account
|
40
|
+
const firstFn = function (obj, count) {
|
41
|
+
obj.foo = count + 1
|
42
|
+
}
|
43
|
+
const secondFn = function (obj, count) {
|
44
|
+
obj.bar = count + 2
|
45
|
+
}
|
46
|
+
|
47
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
48
|
+
expect(chainedFn({}, 10)).toEqual({ foo: 11, bar: 12 })
|
49
|
+
})
|
50
|
+
|
51
|
+
test('chainFn (mutate, return)', () => {
|
52
|
+
const firstFn = function (obj, count) {
|
53
|
+
obj.foo = count + 1
|
54
|
+
}
|
55
|
+
const secondFn = function (obj, count) {
|
56
|
+
return Object.assign({}, obj, { bar: count + 2 })
|
57
|
+
}
|
58
|
+
|
59
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
60
|
+
expect(chainedFn({}, 10)).toEqual({ foo: 11, bar: 12 })
|
61
|
+
})
|
62
|
+
|
63
|
+
test('chainFn (return, mutate)', () => {
|
64
|
+
const firstFn = function (obj, count) {
|
65
|
+
return Object.assign({}, obj, { foo: count + 1 })
|
66
|
+
}
|
67
|
+
const secondFn = function (obj, count) {
|
68
|
+
obj.bar = count + 2
|
69
|
+
}
|
70
|
+
|
71
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
72
|
+
expect(chainedFn({}, 10)).toEqual({ foo: 11, bar: 12 })
|
73
|
+
})
|
74
|
+
|
75
|
+
test('chainFn (return, return)', () => {
|
76
|
+
const firstFn = function (obj, count) {
|
77
|
+
return Object.assign({}, obj, { foo: count + 1 })
|
78
|
+
}
|
79
|
+
const secondFn = function (obj, count) {
|
80
|
+
return Object.assign({}, obj, { bar: count + 2 })
|
81
|
+
}
|
82
|
+
|
83
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
84
|
+
expect(chainedFn({}, 10)).toEqual({ foo: 11, bar: 12 })
|
85
|
+
})
|
86
|
+
|
87
|
+
test('chainFn (return, non-function)', () => {
|
88
|
+
const firstFn = function (obj, count) {
|
89
|
+
return Object.assign({}, obj, { foo: count + 1 })
|
90
|
+
}
|
91
|
+
const secondFn = ''
|
92
|
+
|
93
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
94
|
+
expect(chainedFn).toBe(firstFn)
|
95
|
+
})
|
96
|
+
|
97
|
+
test('chainFn (non-function, return)', () => {
|
98
|
+
const firstFn = ''
|
99
|
+
const secondFn = function (obj, count) {
|
100
|
+
return Object.assign({}, obj, { bar: count + 2 })
|
101
|
+
}
|
102
|
+
|
103
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
104
|
+
expect(chainedFn({}, 10)).toEqual({ bar: 12 })
|
105
|
+
})
|
106
|
+
|
107
|
+
test('chainFn (promise)', async () => {
|
108
|
+
const firstFn = () => Promise.resolve({ foo: 1 })
|
109
|
+
const secondFn = function (obj) {
|
110
|
+
obj.foo++
|
111
|
+
return Promise.resolve()
|
112
|
+
}
|
113
|
+
|
114
|
+
const chainedFn = chainFn(firstFn, secondFn)
|
115
|
+
expect(await chainedFn()).toEqual({ foo: 2 })
|
116
|
+
})
|
117
|
+
})
|