-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Gruntfile.js
138 lines (120 loc) · 4.81 KB
/
Gruntfile.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
'use strict';
var moment = require('moment');
var util = require('util');
module.exports = function (grunt) {
var files = [
'logger.js',
'api/**/*.js',
'helpers/**/*.js',
'modules/**/*.js',
'logic/*.js',
'schema/**/*.js',
'sql/**/*.js',
'app.js'
];
var today = moment().format('YYYY-MM-DD HH:mm:ss');
var config = require('./config.json');
var release_dir = __dirname + '/release/';
var version_dir = release_dir + 'current';
var maxBufferSize = require('buffer').kMaxLength - 1;
grunt.initConfig({
obfuscator: {
files: files,
entry: 'app.js',
out: 'release/app.js',
strings: true,
root: __dirname
},
exec: {
package: {
command: function () {
return [
util.format('mkdir -p %s', version_dir),
util.format('mkdir -p %s/logs', version_dir),
util.format('mkdir -p %s/pids', version_dir),
util.format('mkdir -p %s/public', version_dir),
util.format('cp %s/app.js %s', release_dir, version_dir),
util.format('cp %s/config.json %s', __dirname, version_dir),
util.format('cp %s/package.json %s', __dirname, version_dir),
util.format('cp %s/genesisBlock.json %s', __dirname, version_dir),
util.format('cp %s/LICENSE %s', __dirname, version_dir),
util.format('mkdir -p %s/sql/migrations', version_dir),
util.format('cp %s/sql/*.sql %s/sql/', __dirname, version_dir),
util.format('cp %s/sql/migrations/*.sql %s/sql/migrations/', __dirname, version_dir),
util.format('cd %s/public && mkdir -p ./static', __dirname),
'npm install && bower install && grunt release && cd ../',
util.format('cp %s/public/wallet.html %s/public/', __dirname, version_dir),
util.format('cp %s/public/loading.html %s/public/', __dirname, version_dir),
util.format('cp -Rf %s/public/images %s/public/', __dirname, version_dir),
util.format('cp -Rf %s/public/partials %s/public/', __dirname, version_dir),
util.format('cp -RfL %s/public/static %s/public/', __dirname, version_dir),
util.format('mkdir -p %s/public/node_modules', version_dir),
util.format('cp -Rf %s/public/node_modules/chart.js %s/public/node_modules', __dirname, version_dir),
util.format('mkdir -p %s/public/bower_components', version_dir),
util.format('mkdir -p %s/public/socket.io', version_dir),
util.format('cp -Rf %s/public/bower_components/jquery %s/public/bower_components', __dirname, version_dir),
util.format('cp -Rf %s/public/bower_components/materialize %s/public/bower_components', __dirname, version_dir),
util.format('cp -Rf %s/public/bower_components/blob %s/public/bower_components', __dirname, version_dir),
util.format('cp -Rf %s/public/bower_components/file-saver %s/public/bower_components', __dirname, version_dir)
].join(' && ');
}
},
folder: {
command: 'mkdir -p ' + release_dir
},
build: {
command: 'cd ' + version_dir + '/ && touch build && echo "v' + today + '" > build'
},
coverage: {
command: 'export NODE_ENV=TEST && npx nyc --reporter html --temp-dir test/.nyc_output --report-dir test/.coverage npm run test:all',
maxBuffer: maxBufferSize
},
coverageSingle: {
command: 'export NODE_ENV=TEST && npx nyc --reporter html --temp-dir test/.nyc_output --report-dir test/.coverage mocha $TEST',
maxBuffer: maxBufferSize
},
fetchCoverage: {
command: 'rm -rf ./test/.coverage-func.zip; curl -o ./test/.coverage-func.zip $HOST/coverage/download',
maxBuffer: maxBufferSize
}
},
compress: {
main: {
options: {
archive: version_dir + '.tar.gz',
mode: 'tgz',
level: 6
},
files: [
{ expand: true, cwd: release_dir, src: ['current' + '/**'], dest: './' }
]
}
},
eslint: {
options: {
overrideConfigFile: '.eslintrc.json',
format: 'codeframe',
fix: false
},
target: [
'api',
'helpers',
'modules',
'logic',
'schema',
'tasks',
'test'
]
}
});
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-obfuscator');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('default', ['release']);
grunt.registerTask('release', ['exec:folder', 'obfuscator', 'exec:package', 'exec:build', 'compress']);
grunt.registerTask('test-single', ['exec:coverageSingle']);
grunt.registerTask('eslint-nofix', ['eslint']);
grunt.registerTask('test', ['eslint', 'exec:coverage']);
};