Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit 4ec394f

Browse files
authored
Merge pull request #17 from hisasann/feature/refactor-interfaces-path
refactor: move interfaces to app directory
2 parents baac847 + c046203 commit 4ec394f

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

src/common/env/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import EnvLocal from './env.local'
2-
import { IEnv } from '@/interfaces/IEnv'
2+
import { IEnv } from '@/interfaces/app/IEnv'
33

44
console.log('process.env.NODE_ENV: ', process.env.NODE_ENV)
55
console.log('process.env.BUILD_ENV: ', process.env.BUILD_ENV)
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/pages/example/todos.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ section
1313
<script lang="ts">
1414
import { Component, Vue } from 'nuxt-property-decorator'
1515
import { StateInterface, TodoInterface } from '@/store/todos'
16-
import { HTMLElementEvent } from '@/interfaces/HTMLElementEvent'
16+
import { HTMLElementEvent } from '@/interfaces/dom/HTMLElementEvent'
1717
1818
@Component
1919
export default class extends Vue {

src/routers/custom-path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import INuxtRoute from '../interfaces/INuxtRoute'
1+
import INuxtRoute from '../interfaces/app/INuxtRoute'
22

33
export default function(
44
resolve: (dirname: string, routeDir: string) => string

src/routers/include.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import INuxtRoute from '../interfaces/INuxtRoute'
1+
import INuxtRoute from '../interfaces/app/INuxtRoute'
22

33
export default function(
44
resolve: (dirname: string, routeDir: string) => string

src/routers/routing-validate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import INuxtRoute from '../interfaces/INuxtRoute'
1+
import INuxtRoute from '../interfaces/app/INuxtRoute'
22

33
export default function(
44
resolve: (dirname: string, routeDir: string) => string

0 commit comments

Comments
 (0)