forked from ember-animation/liquid-fire
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (39 loc) · 1.18 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* jshint node: true */
'use strict';
var path = require('path');
var fs = require('fs');
var mergeTrees = require('broccoli-merge-trees');
var pickFiles = require('broccoli-static-compiler');
function LiquidFire(project) {
this.project = project;
this.name = 'Liquid Fire';
}
function unwatchedTree(dir) {
return {
read: function() { return dir; },
cleanup: function() { }
};
}
LiquidFire.prototype.treeFor = function treeFor(name) {
var treePath = path.join('node_modules', 'liquid-fire');
if (name === 'templates') {
treePath = path.join(treePath, 'app-addon', 'templates');
} else {
treePath = path.join(treePath, name + '-addon');
}
var addon;
if (fs.existsSync(treePath)) {
addon = unwatchedTree(treePath);
}
if (name === 'vendor') {
var src = unwatchedTree(path.dirname(require.resolve('velocity-animate')));
addon = mergeTrees([addon, pickFiles(src, {srcDir: '/', destDir: 'velocity'})]);
}
return addon;
};
LiquidFire.prototype.included = function included(app) {
this.app = app;
this.app.import('vendor/velocity/jquery.velocity.js');
this.app.import('vendor/liquid-fire/liquid-fire.css');
};
module.exports = LiquidFire;