Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored and rchl committed Jun 23, 2020
1 parent 7cc29c6 commit ae99111
Show file tree
Hide file tree
Showing 7 changed files with 783 additions and 619 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@
"vue-i18n": "^8.18.1"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/runtime": "7.10.2",
"@babel/core": "7.10.3",
"@babel/preset-env": "7.10.3",
"@babel/runtime": "7.10.3",
"@nuxt/types": "0.7.9",
"@nuxtjs/eslint-config-typescript": "2.0.0",
"@nuxtjs/module-test-utils": "1.6.1",
Expand All @@ -107,11 +107,11 @@
"core-js": "3.6.5",
"eslint": "6.8.0",
"finalhandler": "1.1.2",
"jest": "26.0.1",
"jest": "26.1.0",
"jest-dev-server": "4.4.0",
"jsdom": "16.2.2",
"messageformat": "2.3.0",
"nuxt": "2.12.2",
"nuxt": "2.13.0",
"playwright-chromium": "1.1.1",
"release-it": "13.6.3",
"serve-static": "1.14.1",
Expand Down
1 change: 1 addition & 0 deletions test/fixture/base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const { resolve } = require('path')
module.exports = {
rootDir: resolve(__dirname, '../..'),
dev: false,
telemetry: false,
build: {
babel: {
presets ({ isServer }) {
Expand Down
7 changes: 7 additions & 0 deletions test/fixture/no-i18n/nuxt.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const { resolve } = require('path')

module.exports = {
...require('../base.config.js'),
buildDir: resolve(__dirname, '.nuxt'),
srcDir: __dirname
}
5 changes: 5 additions & 0 deletions test/fixture/no-i18n/pages/about.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
about
</div>
</template>
5 changes: 5 additions & 0 deletions test/fixture/no-i18n/pages/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<template>
<div>
index
</div>
</template>
4 changes: 2 additions & 2 deletions test/module.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,15 +587,15 @@ describe('with empty configuration', () => {
let nuxt

beforeAll(async () => {
nuxt = (await setup(loadConfig(__dirname, 'basic', { i18n: {} }))).nuxt
nuxt = (await setup(loadConfig(__dirname, 'no-i18n', { i18n: {} }))).nuxt
})

afterAll(async () => {
await nuxt.close()
})

test('does not remove all routes', async () => {
await nuxt.renderAndGetWindow(url('/fallback'))
await nuxt.renderAndGetWindow(url('/about'))
})
})

Expand Down
1,370 changes: 758 additions & 612 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit ae99111

Please sign in to comment.