Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bd36318

Browse files
author
vdemedes
committedDec 22, 2015
cache babel-transpiled code
1 parent 52d2a7a commit bd36318

File tree

2 files changed

+48
-14
lines changed

2 files changed

+48
-14
lines changed
 

‎lib/babel.js

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

3+
var cacheDir = require('xdg-basedir').cache;
34
var debug = require('debug')('ava');
5+
var hasha = require('hasha');
6+
var cacha = require('cacha');
7+
var join = require('path').join;
8+
9+
var cache = cacha(join(cacheDir, 'ava'));
410

511
var opts = JSON.parse(process.argv[2]);
612

@@ -36,24 +42,17 @@ sourceMapSupport.install({
3642
}
3743
});
3844

39-
var createEspowerPlugin = require('babel-plugin-espower/create');
4045
var requireFromString = require('require-from-string');
4146
var loudRejection = require('loud-rejection/api')(process);
4247
var serializeError = require('serialize-error');
43-
var babel = require('babel-core');
4448
var send = require('./send');
4549

4650
var testPath = opts.file;
4751

48-
// initialize power-assert
49-
var powerAssert = createEspowerPlugin(babel, {
50-
patterns: require('./enhance-assert').PATTERNS
51-
});
52-
5352
// if generators are not supported, use regenerator
5453
var options = {
5554
presets: ['stage-2', 'es2015'],
56-
plugins: [powerAssert, 'transform-runtime'],
55+
plugins: ['transform-runtime'],
5756
sourceMaps: true
5857
};
5958

@@ -70,11 +69,43 @@ if (inputSourceMap) {
7069
}
7170

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

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

‎package.json

+4-1
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",
@@ -116,7 +118,8 @@
116118
"source-map-support": "^0.4.0",
117119
"squeak": "^1.2.0",
118120
"time-require": "^0.1.2",
119-
"update-notifier": "^0.5.0"
121+
"update-notifier": "^0.5.0",
122+
"xdg-basedir": "^2.0.0"
120123
},
121124
"devDependencies": {
122125
"coveralls": "^2.11.4",

0 commit comments

Comments
 (0)