Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsn committed Jan 13, 2018
1 parent 63080b1 commit 2ea6104
Show file tree
Hide file tree
Showing 6 changed files with 6,409 additions and 33 deletions.
2 changes: 1 addition & 1 deletion examples/complex/components/app/app.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from 'vue'
import Component from 'vue-class-component'
import * as Template from './app.pug?style=./app.scss'
import Template from './app.pug?style=./app.scss'

@Template
@Component
Expand Down
6 changes: 3 additions & 3 deletions examples/complex/template.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
declare module '*.scss' {
import Vue = require('vue')
import Vue, { ComponentOptions } from 'vue'
interface Template {
<V extends Vue>(options: Vue.ComponentOptions<V>): Vue.ComponentOptions<V>
<V extends Vue>(options: ComponentOptions<V>): ComponentOptions<V>
<V extends typeof Vue>(component: V): V
}
const template: Template
export = template
export default template
}
2 changes: 1 addition & 1 deletion examples/complex/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"es2015",
"dom"
],
"strict": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true
}
}
2 changes: 1 addition & 1 deletion lib/modules/add-scoped-id.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const addScopedIdPlugin = postcss.plugin('add-scoped-id', options => {
node.each(transformNode)
}
} else {
node.selector = selectorTransformer.process(node.selector).result
node.selector = selectorTransformer.processSync(node.selector)
}
})

Expand Down
Loading

0 comments on commit 2ea6104

Please sign in to comment.