-
Notifications
You must be signed in to change notification settings - Fork 0
/
buster.js
30 lines (29 loc) · 851 Bytes
/
buster.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
var config = module.exports;
config['habahaba'] = {
env: 'browser',
rootPath: './',
libs: [
'libs/requirejs/require.js',
'require-config-for-tests.js',
'libs/log4javascript.js',
'libs/crypto-js-read-only/build/components/core.js',
'libs/crypto-js-read-only/build/components/enc-base64.js',
'libs/crypto-js-read-only/build/components/md5.js',
'libs/crypto-js-read-only/build/components/sha1.js'
],
resources: [
'libs/jquery.js',
'libs/jslix/src/*.js',
'libs/js-signals/dist/signals.js'
],
sources: [
'src/js/*.js'
],
tests: ['tests/*.js'],
extensions: [require('buster-amd')],
'buster-amd': {
pathMapper: function(path){
return path.replace(/\.js$/, '').replace(/^\//, '../../');
}
}
};