forked from akeneo/pim-community-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
80 lines (76 loc) · 2.71 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
'use strict';
module.exports = function (grunt) {
require('time-grunt')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
eslint: {
options: {
quiet: true,
configFile: '.eslintrc'
},
target: [
'Gruntfile.js',
'src/**/*.js',
'!src/**/lib/**/*.js',
'!src/**/DataGridBundle/**/*.js',
'!src/**/NavigationBundle/**/*.js',
'!src/Oro/**/**/*.js'
]
},
recess: {
all: [
'web/bundles/pim*/**/*.css',
'web/bundles/pim*/**/*.less',
'!web/bundles/**/lib/**/*.css',
'!web/bundles/**/lib/**/*.less'
],
options: {
strictPropertyOrder: false,
noIDs: false,
noOverqualifying: false,
noUniversalSelectors: false
}
},
jasmine: {
specs: {
src: '/bundles/ororequirejs/lib/require.js',
options: {
specs: 'src/**/spec/**/*Spec.js',
vendor: ['.grunt/grunt-contrib-jasmine/es5-shim.js'],
template: require('grunt-template-jasmine-requirejs'),
templateOptions: {
requireConfigFile: 'web/js/require-config.js',
requireConfig: {
baseUrl: 'web/bundles',
shim: {
'oro/routes': {
deps: ['routing'],
init: function (routing) {
return routing;
}
}
},
map: {
'*': {
'routing': 'oro/routes'
},
'oro/routes': {
'routing': 'routing'
}
},
paths: {
'oro/routes': '../js/routes'
}
}
}
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-recess');
grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('test', ['jasmine']);
grunt.registerTask('codestyle', ['eslint', 'recess']);
grunt.registerTask('default', ['codestyle', 'test']);
};