566 lines
21 KiB
JavaScript
566 lines
21 KiB
JavaScript
module.exports = function (grunt) {
|
|
|
|
|
|
|
|
// Default task.
|
|
grunt.registerTask('default', ['jshint:dev', 'build', 'karma:unit']);
|
|
grunt.registerTask('dev', ['jshint:dev', 'build-dev', 'webserver', 'open:dev', 'watch']);
|
|
grunt.registerTask('docserve', ['docs:api', 'connect:docserver', 'open:docs', 'watch:docs']);
|
|
grunt.registerTask('vs', ['jshint:dev', 'build-dev', 'watch']);
|
|
|
|
//TODO: Too much watching, this brings windows to it's knees when in dev mode
|
|
//run by the watch task
|
|
grunt.registerTask('watch-js', ['jshint:dev', 'concat', 'copy:app', 'copy:mocks', 'copy:canvasdesigner', 'copy:vs', 'karma:unit']);
|
|
grunt.registerTask('watch-less', ['recess:build', 'recess:installer', 'recess:canvasdesigner', 'postcss', 'copy:canvasdesigner', 'copy:assets', 'copy:vs']);
|
|
grunt.registerTask('watch-html', ['copy:views', 'copy:vs']);
|
|
grunt.registerTask('watch-installer', ['concat:install', 'concat:installJs', 'copy:installer', 'copy:vs']);
|
|
grunt.registerTask('watch-canvasdesigner', ['copy:canvasdesigner', 'concat:canvasdesignerJs', 'copy:vs']);
|
|
grunt.registerTask('watch-test', ['jshint:dev', 'karma:unit']);
|
|
|
|
//triggered from grunt
|
|
grunt.registerTask('build', ['concat', 'recess:build', 'recess:installer', 'recess:canvasdesigner', 'postcss', 'bower-install-simple', 'bower', 'copy', 'clean:post']);
|
|
|
|
//triggered from grunt dev vs or grunt vs
|
|
grunt.registerTask('build-dev', ['clean:pre', 'concat', 'recess:build', 'recess:installer', 'postcss', 'bower-install-simple', 'bower', 'copy']);
|
|
|
|
//utillity tasks
|
|
grunt.registerTask('docs', ['ngdocs']);
|
|
grunt.registerTask('webserver', ['connect:devserver']);
|
|
|
|
|
|
// Print a timestamp (useful for when watching)
|
|
grunt.registerTask('timestamp', function () {
|
|
grunt.log.subhead(Date());
|
|
});
|
|
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
buildVersion: grunt.option('buildversion') || '7',
|
|
connect: {
|
|
devserver: {
|
|
options: {
|
|
port: 9990,
|
|
hostname: '0.0.0.0',
|
|
base: './build',
|
|
middleware: function(connect, options) {
|
|
return [
|
|
//uncomment to enable CSP
|
|
// util.csp(),
|
|
//util.rewrite(),
|
|
connect.favicon('images/favicon.ico'),
|
|
connect.static(options.base),
|
|
connect.directory(options.base)
|
|
];
|
|
}
|
|
}
|
|
},
|
|
testserver: {},
|
|
docserver: {
|
|
options: {
|
|
port: 8880,
|
|
hostname: '0.0.0.0',
|
|
base: './docs/api',
|
|
middleware: function(connect, options) {
|
|
return [
|
|
//uncomment to enable CSP
|
|
// util.csp(),
|
|
//util.rewrite(),
|
|
connect.static(options.base),
|
|
connect.directory(options.base)
|
|
];
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
open: {
|
|
dev: {
|
|
path: 'http://localhost:9990/belle/'
|
|
},
|
|
docs: {
|
|
path: 'http://localhost:8880/index.html'
|
|
}
|
|
},
|
|
|
|
distdir: 'build/belle',
|
|
vsdir: '../Umbraco.Web.UI/umbraco',
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
banner:
|
|
'/*! <%= pkg.title || pkg.name %>\n' +
|
|
'<%= pkg.homepage ? " * " + pkg.homepage + "\\n" : "" %>' +
|
|
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>;\n' +
|
|
' * Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %>\n */\n',
|
|
src: {
|
|
js: ['src/**/*.js', 'src/*.js'],
|
|
|
|
common: ['src/common/**/*.js'],
|
|
controllers: ['src/**/*.controller.js'],
|
|
|
|
specs: ['test/**/*.spec.js'],
|
|
scenarios: ['test/**/*.scenario.js'],
|
|
samples: ['sample files/*.js'],
|
|
html: ['src/index.html', 'src/install.html'],
|
|
|
|
everything: ['src/**/*.*', 'test/**/*.*', 'docs/**/*.*'],
|
|
|
|
tpl: {
|
|
app: ['src/views/**/*.html'],
|
|
common: ['src/common/**/*.tpl.html']
|
|
},
|
|
less: ['src/less/belle.less'], // recess:build doesn't accept ** in its file patterns
|
|
prod: ['<%= distdir %>/js/*.js']
|
|
},
|
|
|
|
clean: {
|
|
pre: ['<%= distdir %>/*'],
|
|
post: ['<%= distdir %>/js/*.dev.js']
|
|
},
|
|
|
|
copy: {
|
|
assets: {
|
|
files: [{ dest: '<%= distdir %>/assets', src: '**', expand: true, cwd: 'src/assets/' }]
|
|
},
|
|
|
|
config: {
|
|
files: [{ dest: '<%= distdir %>/../config', src: '**', expand: true, cwd: 'src/config/' }]
|
|
},
|
|
|
|
installer: {
|
|
files: [{ dest: '<%= distdir %>/views/install', src: '**/*.html', expand: true, cwd: 'src/installer/steps' }]
|
|
},
|
|
|
|
canvasdesigner: {
|
|
files: [
|
|
{ dest: '<%= distdir %>/preview', src: '**/*.html', expand: true, cwd: 'src/canvasdesigner' },
|
|
{ dest: '<%= distdir %>/preview/editors', src: '**/*.html', expand: true, cwd: 'src/canvasdesigner/editors' },
|
|
{ dest: '<%= distdir %>/assets/less', src: '**/*.less', expand: true, cwd: 'src/canvasdesigner/editors' },
|
|
{ dest: '<%= distdir %>/js', src: 'canvasdesigner.config.js', expand: true, cwd: 'src/canvasdesigner/config' },
|
|
{ dest: '<%= distdir %>/js', src: 'canvasdesigner.palettes.js', expand: true, cwd: 'src/canvasdesigner/config' },
|
|
{ dest: '<%= distdir %>/js', src: 'canvasdesigner.front.js', expand: true, cwd: 'src/canvasdesigner' }
|
|
]
|
|
},
|
|
|
|
vendor: {
|
|
files: [{ dest: '<%= distdir %>/lib', src: '**', expand: true, cwd: 'lib/' }]
|
|
},
|
|
|
|
views: {
|
|
files: [{ dest: '<%= distdir %>/views', src: ['**/*.*', '!**/*.controller.js'], expand: true, cwd: 'src/views' }]
|
|
},
|
|
|
|
app: {
|
|
files: [
|
|
{ dest: '<%= distdir %>/js', src: '*.js', expand: true, cwd: 'src/' }
|
|
]
|
|
},
|
|
|
|
mocks: {
|
|
files: [{ dest: '<%= distdir %>/js', src: '*.js', expand: true, cwd: 'src/common/mocks/' }]
|
|
},
|
|
|
|
vs: {
|
|
files: [
|
|
//everything except the index.html root file!
|
|
//then we need to figure out how to not copy all the test stuff either!?
|
|
{ dest: '<%= vsdir %>/assets', src: '**', expand: true, cwd: '<%= distdir %>/assets' },
|
|
{ dest: '<%= vsdir %>/js', src: '**', expand: true, cwd: '<%= distdir %>/js' },
|
|
{ dest: '<%= vsdir %>/views', src: '**', expand: true, cwd: '<%= distdir %>/views' },
|
|
{ dest: '<%= vsdir %>/preview', src: '**', expand: true, cwd: '<%= distdir %>/preview' },
|
|
{ dest: '<%= vsdir %>/lib', src: '**', expand: true, cwd: '<%= distdir %>/lib' }
|
|
]
|
|
}
|
|
},
|
|
|
|
karma: {
|
|
unit: { configFile: 'test/config/karma.conf.js', keepalive: true },
|
|
e2e: { configFile: 'test/config/e2e.js', keepalive: true },
|
|
watch: { configFile: 'test/config/unit.js', singleRun: false, autoWatch: true, keepalive: true }
|
|
},
|
|
|
|
concat: {
|
|
index: {
|
|
src: ['src/index.html'],
|
|
dest: '<%= distdir %>/index.html',
|
|
options: {
|
|
process: true
|
|
}
|
|
},
|
|
install: {
|
|
src: ['src/installer/installer.html'],
|
|
dest: '<%= distdir %>/installer.html',
|
|
options: {
|
|
process: true
|
|
}
|
|
},
|
|
|
|
installJs: {
|
|
src: ['src/installer/**/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.installer.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n angular.module('umbraco.install', []); \n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
canvasdesignerJs: {
|
|
src: ['src/canvasdesigner/canvasdesigner.global.js', 'src/canvasdesigner/canvasdesigner.controller.js', 'src/canvasdesigner/editors/*.js', 'src/canvasdesigner/lib/*.js'],
|
|
dest: '<%= distdir %>/js/canvasdesigner.panel.js'
|
|
},
|
|
|
|
controllers: {
|
|
src: ['src/controllers/**/*.controller.js', 'src/views/**/*.controller.js'],
|
|
dest: '<%= distdir %>/js/umbraco.controllers.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
services: {
|
|
src: ['src/common/services/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.services.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
security: {
|
|
src: ['src/common/security/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.security.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
resources: {
|
|
src: ['src/common/resources/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.resources.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
testing: {
|
|
src: ['src/common/mocks/*/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.testing.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
directives: {
|
|
src: ['src/common/directives/**/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.directives.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
},
|
|
|
|
filters: {
|
|
src: ['src/common/filters/*.js'],
|
|
dest: '<%= distdir %>/js/umbraco.filters.js',
|
|
options: {
|
|
banner: "<%= banner %>\n(function() { \n\n",
|
|
footer: "\n\n})();"
|
|
}
|
|
}
|
|
},
|
|
|
|
uglify: {
|
|
options: {
|
|
mangle: true
|
|
},
|
|
combine: {
|
|
files: {
|
|
'<%= distdir %>/js/umbraco.min.js': ['<%= distdir %>/js/umbraco.*.js']
|
|
}
|
|
}
|
|
},
|
|
|
|
recess: {
|
|
build: {
|
|
files: {
|
|
'<%= distdir %>/assets/css/<%= pkg.name %>.css':
|
|
['<%= src.less %>']
|
|
},
|
|
options: {
|
|
compile: true,
|
|
compress: true
|
|
}
|
|
},
|
|
installer: {
|
|
files: {
|
|
'<%= distdir %>/assets/css/installer.css':
|
|
['src/less/installer.less']
|
|
},
|
|
options: {
|
|
compile: true,
|
|
compress: true
|
|
}
|
|
},
|
|
canvasdesigner: {
|
|
files: {
|
|
'<%= distdir %>/assets/css/canvasdesigner.css':
|
|
['src/less/canvas-designer.less', 'src/less/helveticons.less']
|
|
},
|
|
options: {
|
|
compile: true,
|
|
compress: true
|
|
}
|
|
}
|
|
},
|
|
|
|
postcss: {
|
|
options: {
|
|
processors: [
|
|
// add vendor prefixes
|
|
require('autoprefixer-core')({
|
|
browsers: 'last 2 versions'
|
|
})
|
|
]
|
|
},
|
|
dist: {
|
|
src: '<%= distdir %>/assets/css/<%= pkg.name %>.css'
|
|
}
|
|
},
|
|
|
|
ngTemplateCache: {
|
|
views: {
|
|
files: {
|
|
'<%= distdir %>/js/umbraco.views.js': 'src/views/**/*.html'
|
|
},
|
|
options: {
|
|
trim: 'src/',
|
|
module: 'umbraco.views'
|
|
}
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
docs: {
|
|
files: ['docs/src/**/*.md'],
|
|
tasks: ['watch-docs', 'timestamp']
|
|
},
|
|
css: {
|
|
files: 'src/**/*.less',
|
|
tasks: ['watch-less', 'timestamp'],
|
|
options: {
|
|
livereload: true,
|
|
},
|
|
},
|
|
js: {
|
|
files: ['src/**/*.js', 'src/*.js'],
|
|
tasks: ['watch-js', 'timestamp'],
|
|
},
|
|
test: {
|
|
files: ['test/**/*.js'],
|
|
tasks: ['watch-test', 'timestamp'],
|
|
},
|
|
installer: {
|
|
files: ['src/installer/**/*.*'],
|
|
tasks: ['watch-installer', 'timestamp'],
|
|
},
|
|
canvasdesigner: {
|
|
files: ['src/canvasdesigner/**/*.*'],
|
|
tasks: ['watch-canvasdesigner', 'timestamp'],
|
|
},
|
|
html: {
|
|
files: ['src/views/**/*.html', 'src/*.html'],
|
|
tasks: ['watch-html', 'timestamp']
|
|
}
|
|
},
|
|
|
|
|
|
ngdocs: {
|
|
options: {
|
|
dest: 'docs/api',
|
|
startPage: '/api',
|
|
title: "Umbraco Backoffice UI API Documentation",
|
|
html5Mode: false,
|
|
styles: [
|
|
'docs/umb-docs.css'
|
|
],
|
|
image: "https://our.umbraco.org/assets/images/logo.svg"
|
|
},
|
|
api: {
|
|
src: ['src/common/**/*.js', 'docs/src/api/**/*.ngdoc'],
|
|
title: 'API Documentation'
|
|
},
|
|
tutorials: {
|
|
src: [],
|
|
title: ''
|
|
}
|
|
},
|
|
|
|
eslint:{
|
|
src: ['<%= src.common %>','<%= src.controllers %>'],
|
|
options: {quiet: true}
|
|
},
|
|
|
|
jshint: {
|
|
dev: {
|
|
files: {
|
|
src: ['<%= src.common %>']
|
|
},
|
|
options: {
|
|
curly: true,
|
|
eqeqeq: true,
|
|
immed: true,
|
|
latedef: "nofunc",
|
|
newcap: true,
|
|
noarg: true,
|
|
sub: true,
|
|
boss: true,
|
|
//NOTE: This is required so it doesn't barf on reserved words like delete when doing $http.delete
|
|
es5: true,
|
|
eqnull: true,
|
|
//NOTE: we need to use eval sometimes so ignore it
|
|
evil: true,
|
|
//NOTE: we need to check for strings such as "javascript:" so don't throw errors regarding those
|
|
scripturl: true,
|
|
//NOTE: we ignore tabs vs spaces because enforcing that causes lots of errors depending on the text editor being used
|
|
smarttabs: true,
|
|
globals: {}
|
|
}
|
|
},
|
|
build: {
|
|
files: {
|
|
src: ['<%= src.prod %>']
|
|
},
|
|
options: {
|
|
curly: true,
|
|
eqeqeq: true,
|
|
immed: true,
|
|
latedef: "nofunc",
|
|
newcap: true,
|
|
noarg: true,
|
|
sub: true,
|
|
boss: true,
|
|
//NOTE: This is required so it doesn't barf on reserved words like delete when doing $http.delete
|
|
es5: true,
|
|
eqnull: true,
|
|
//NOTE: we need to use eval sometimes so ignore it
|
|
evil: true,
|
|
//NOTE: we need to check for strings such as "javascript:" so don't throw errors regarding those
|
|
scripturl: true,
|
|
//NOTE: we ignore tabs vs spaces because enforcing that causes lots of errors depending on the text editor being used
|
|
smarttabs: true,
|
|
globalstrict: true,
|
|
globals: { $: false, jQuery: false, define: false, require: false, window: false }
|
|
}
|
|
}
|
|
},
|
|
|
|
bower: {
|
|
dev: {
|
|
dest: '<%= distdir %>/lib',
|
|
options: {
|
|
expand: true,
|
|
ignorePackages: ['bootstrap'],
|
|
packageSpecific: {
|
|
'moment': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['min/moment-with-locales.js']
|
|
},
|
|
'typeahead.js': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['dist/typeahead.bundle.min.js']
|
|
},
|
|
'underscore': {
|
|
files: ['underscore-min.js', 'underscore-min.map']
|
|
},
|
|
'rgrove-lazyload': {
|
|
files: ['lazyload.js']
|
|
},
|
|
'bootstrap-social': {
|
|
files: ['bootstrap-social.css']
|
|
},
|
|
'font-awesome': {
|
|
files: ['css/font-awesome.min.css', 'fonts/*']
|
|
},
|
|
"jquery": {
|
|
keepExpandedHierarchy: false,
|
|
files: ['dist/jquery.min.js', 'dist/jquery.min.map']
|
|
},
|
|
'jquery-ui': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['jquery-ui.min.js']
|
|
},
|
|
'jquery-migrate': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['jquery-migrate.min.js']
|
|
},
|
|
'tinymce': {
|
|
files: ['plugins/**', 'themes/**', 'tinymce.min.js']
|
|
},
|
|
'angular-dynamic-locale': {
|
|
files: ['tmhDynamicLocale.min.js', 'tmhDynamicLocale.min.js.map']
|
|
},
|
|
'ng-file-upload': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['ng-file-upload.min.js']
|
|
},
|
|
'angular-local-storage': {
|
|
keepExpandedHierarchy: false,
|
|
files: ['dist/angular-local-storage.min.js']
|
|
},
|
|
'codemirror': {
|
|
files: [
|
|
'lib/codemirror.js',
|
|
'lib/codemirror.css',
|
|
|
|
'mode/css/*',
|
|
'mode/javascript/*',
|
|
'mode/xml/*',
|
|
'mode/htmlmixed/*',
|
|
|
|
'addon/search/*',
|
|
'addon/edit/*',
|
|
'addon/selection/*',
|
|
'addon/dialog/*'
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
options: {
|
|
expand: true
|
|
}
|
|
},
|
|
|
|
"bower-install-simple": {
|
|
options: {
|
|
color: true
|
|
},
|
|
"dev": {}
|
|
}
|
|
});
|
|
|
|
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-recess');
|
|
grunt.loadNpmTasks('grunt-postcss');
|
|
|
|
grunt.loadNpmTasks('grunt-karma');
|
|
|
|
grunt.loadNpmTasks('grunt-open');
|
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
|
grunt.loadNpmTasks("grunt-bower-install-simple");
|
|
grunt.loadNpmTasks('grunt-bower');
|
|
grunt.loadNpmTasks('grunt-ngdocs');
|
|
|
|
grunt.loadNpmTasks('grunt-eslint');
|
|
grunt.loadNpmTasks('grunt-hustler');
|
|
};
|