Skip to content

Commit 28e0fd3

Browse files
committedMay 22, 2018
feat: enable template compile caching
1 parent 11824a2 commit 28e0fd3

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed
 

‎docs/options.md

+7
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,10 @@ Force production mode, which prohibits the loader from emitting code (e.g. hot-r
7474
- default: `false`
7575

7676
Compiled the component for usage inside Shadow DOM. In this mode, the styles of the component will be injected into `this.$root.$options.shadowRoot` instead of the document head.
77+
78+
## cacheDirectory / cacheIdentifier
79+
80+
- type: `string`
81+
- default: `undefined`
82+
83+
When both options are specified, enables file-system-based template compilation caching (requires `cache-loader` to be installed in the same project).

‎lib/loaders/pitcher.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ module.exports = code => code
99
// This pitching loader is responsible for intercepting all vue block requests
1010
// and transform it into appropriate requests.
1111
module.exports.pitch = function (remainingRequest) {
12+
const options = loaderUtils.getOptions(this)
13+
const { cacheDirectory, cacheIdentifier } = options
1214
const query = qs.parse(this.resourceQuery.slice(1))
1315

1416
// if this is a language block request, remove eslint-loader to avoid
@@ -67,9 +69,13 @@ module.exports.pitch = function (remainingRequest) {
6769
}
6870
}
6971

70-
// for templates: inject the template compiler
72+
// for templates: inject the template compiler & optional cache
7173
if (query.type === `template`) {
74+
const cacheLoader = cacheDirectory && cacheIdentifier
75+
? [`cache-loader?${JSON.stringify(options)}`]
76+
: []
7277
const request = genRequest([
78+
...cacheLoader,
7379
templateLoaderPath + `??vue-loader-options`,
7480
...loaders
7581
])

‎lib/plugin.js

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ class VueLoaderPlugin {
8383
resourceQuery: query => {
8484
const parsed = qs.parse(query.slice(1))
8585
return parsed.vue != null
86+
},
87+
options: {
88+
cacheDirectory: vueLoaderUse.options.cacheDirectory,
89+
cacheIdentifier: vueLoaderUse.options.cacheIdentifier
8690
}
8791
}
8892

0 commit comments

Comments
 (0)
Please sign in to comment.