Skip to content

Commit 74fc5a9

Browse files
author
vdemedes
committed
cache babel-transpiled code
1 parent 52d2a7a commit 74fc5a9

File tree

2 files changed

+45
-13
lines changed

2 files changed

+45
-13
lines changed

lib/babel.js

+43-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
'use strict';
22

33
var debug = require('debug')('ava');
4+
var hasha = require('hasha');
5+
var cacha = require('cacha');
6+
var join = require('path').join;
7+
8+
var cache = cacha(join(module.paths[1], '.cache', 'ava'));
49

510
var opts = JSON.parse(process.argv[2]);
611

@@ -36,24 +41,17 @@ sourceMapSupport.install({
3641
}
3742
});
3843

39-
var createEspowerPlugin = require('babel-plugin-espower/create');
4044
var requireFromString = require('require-from-string');
4145
var loudRejection = require('loud-rejection/api')(process);
4246
var serializeError = require('serialize-error');
43-
var babel = require('babel-core');
4447
var send = require('./send');
4548

4649
var testPath = opts.file;
4750

48-
// initialize power-assert
49-
var powerAssert = createEspowerPlugin(babel, {
50-
patterns: require('./enhance-assert').PATTERNS
51-
});
52-
5351
// if generators are not supported, use regenerator
5452
var options = {
5553
presets: ['stage-2', 'es2015'],
56-
plugins: [powerAssert, 'transform-runtime'],
54+
plugins: ['transform-runtime'],
5755
sourceMaps: true
5856
};
5957

@@ -70,11 +68,43 @@ if (inputSourceMap) {
7068
}
7169

7270
// include test file
73-
var transpiled = babel.transformFileSync(testPath, options);
74-
sourceMapCache[testPath] = transpiled.map;
75-
requireFromString(transpiled.code, testPath, {
76-
appendPaths: module.paths
77-
});
71+
var cachePath = hasha(testPath);
72+
var hashPath = cachePath + '_hash';
73+
74+
var prevHash = cache.getSync(hashPath, {encoding: 'utf8'});
75+
var currHash = hasha.fromFileSync(testPath);
76+
77+
if (prevHash === currHash) {
78+
var cached = JSON.parse(cache.getSync(cachePath));
79+
80+
sourceMapCache[testPath] = cached.map;
81+
requireFromString(cached.code, testPath, {
82+
appendPaths: module.paths
83+
});
84+
} else {
85+
var createEspowerPlugin = require('babel-plugin-espower/create');
86+
var babel = require('babel-core');
87+
88+
// initialize power-assert
89+
var powerAssert = createEspowerPlugin(babel, {
90+
patterns: require('./enhance-assert').PATTERNS
91+
});
92+
93+
options.plugins.push(powerAssert);
94+
95+
var transpiled = babel.transformFileSync(testPath, options);
96+
97+
cache.setSync(hashPath, currHash);
98+
cache.setSync(cachePath, JSON.stringify({
99+
code: transpiled.code,
100+
map: transpiled.map
101+
}));
102+
103+
sourceMapCache[testPath] = transpiled.map;
104+
requireFromString(transpiled.code, testPath, {
105+
appendPaths: module.paths
106+
});
107+
}
78108

79109
process.on('uncaughtException', function (exception) {
80110
send('uncaughtException', {exception: serializeError(exception)});

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
"babel-preset-stage-2": "^6.3.13",
8989
"babel-runtime": "^6.3.19",
9090
"bluebird": "^3.0.0",
91+
"cacha": "^1.0.3",
9192
"chalk": "^1.0.0",
9293
"co-with-promise": "^4.6.0",
9394
"core-assert": "^0.1.0",
@@ -97,6 +98,7 @@
9798
"figures": "^1.4.0",
9899
"fn-name": "^2.0.0",
99100
"globby": "^4.0.0",
101+
"hasha": "^2.0.2",
100102
"is-generator-fn": "^1.0.0",
101103
"is-observable": "^0.1.0",
102104
"is-promise": "^2.1.0",

0 commit comments

Comments
 (0)