Skip to content

Commit 2ea6104

Browse files
committed
chore: bump deps
1 parent 63080b1 commit 2ea6104

File tree

6 files changed

+6409
-33
lines changed

6 files changed

+6409
-33
lines changed

examples/complex/components/app/app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Vue from 'vue'
22
import Component from 'vue-class-component'
3-
import * as Template from './app.pug?style=./app.scss'
3+
import Template from './app.pug?style=./app.scss'
44

55
@Template
66
@Component

examples/complex/template.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
declare module '*.scss' {
2-
import Vue = require('vue')
2+
import Vue, { ComponentOptions } from 'vue'
33
interface Template {
4-
<V extends Vue>(options: Vue.ComponentOptions<V>): Vue.ComponentOptions<V>
4+
<V extends Vue>(options: ComponentOptions<V>): ComponentOptions<V>
55
<V extends typeof Vue>(component: V): V
66
}
77
const template: Template
8-
export = template
8+
export default template
99
}

examples/complex/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"es2015",
99
"dom"
1010
],
11+
"strict": true,
1112
"experimentalDecorators": true,
12-
"allowSyntheticDefaultImports": true,
1313
"sourceMap": true
1414
}
1515
}

lib/modules/add-scoped-id.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const addScopedIdPlugin = postcss.plugin('add-scoped-id', options => {
6868
node.each(transformNode)
6969
}
7070
} else {
71-
node.selector = selectorTransformer.process(node.selector).result
71+
node.selector = selectorTransformer.processSync(node.selector)
7272
}
7373
})
7474

0 commit comments

Comments
 (0)