mirror of
https://github.com/moparisthebest/mail
synced 2025-01-31 07:00:17 -05:00
angular template minification
Conflicts: Gruntfile.js
This commit is contained in:
parent
9d8fc023ca
commit
f0f215ad5b
29
Gruntfile.js
29
Gruntfile.js
@ -30,7 +30,7 @@ module.exports = function(grunt) {
|
|||||||
|
|
||||||
clean: {
|
clean: {
|
||||||
dist: ['dist', 'compile', 'test/lib', 'test/integration/src'],
|
dist: ['dist', 'compile', 'test/lib', 'test/integration/src'],
|
||||||
release: ['dist/**/*.browserified.js', 'dist/**/*.js.map']
|
release: ['dist/**/*.browserified.js', 'dist/**/*.js.map', 'dist/js/app.templates.js']
|
||||||
},
|
},
|
||||||
|
|
||||||
copy: {
|
copy: {
|
||||||
@ -74,7 +74,7 @@ module.exports = function(grunt) {
|
|||||||
tpl: {
|
tpl: {
|
||||||
expand: true,
|
expand: true,
|
||||||
cwd: 'src/tpl/',
|
cwd: 'src/tpl/',
|
||||||
src: ['*'],
|
src: ['read-sandbox.html'],
|
||||||
dest: 'dist/tpl/'
|
dest: 'dist/tpl/'
|
||||||
},
|
},
|
||||||
app: {
|
app: {
|
||||||
@ -231,6 +231,22 @@ module.exports = function(grunt) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
ngtemplates: {
|
||||||
|
mail: {
|
||||||
|
src: [
|
||||||
|
'tpl/**/*.html'
|
||||||
|
],
|
||||||
|
dest: 'dist/js/app.templates.js',
|
||||||
|
cwd: 'src/',
|
||||||
|
options: {
|
||||||
|
htmlmin: {
|
||||||
|
collapseWhitespace: true,
|
||||||
|
removeComments: true // we do not use comment directives
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
concat: {
|
concat: {
|
||||||
options: {
|
options: {
|
||||||
separator: ';\n',
|
separator: ';\n',
|
||||||
@ -249,7 +265,8 @@ module.exports = function(grunt) {
|
|||||||
'src/lib/lawnchair/lawnchair-git.js',
|
'src/lib/lawnchair/lawnchair-git.js',
|
||||||
'src/lib/lawnchair/lawnchair-adapter-webkit-sqlite-git.js',
|
'src/lib/lawnchair/lawnchair-adapter-webkit-sqlite-git.js',
|
||||||
'src/lib/lawnchair/lawnchair-adapter-indexed-db-git.js',
|
'src/lib/lawnchair/lawnchair-adapter-indexed-db-git.js',
|
||||||
'dist/js/app.browserified.js'
|
'dist/js/app.browserified.js',
|
||||||
|
'<%= ngtemplates.mail.dest %>'
|
||||||
],
|
],
|
||||||
dest: 'dist/js/app.min.js',
|
dest: 'dist/js/app.min.js',
|
||||||
options: {
|
options: {
|
||||||
@ -498,6 +515,8 @@ module.exports = function(grunt) {
|
|||||||
'appcache.manifest',
|
'appcache.manifest',
|
||||||
'manifest.webapp',
|
'manifest.webapp',
|
||||||
'manifest.mobile.json',
|
'manifest.mobile.json',
|
||||||
|
'background.js',
|
||||||
|
'js/app.templates.js',
|
||||||
'js/app.js.map',
|
'js/app.js.map',
|
||||||
'js/app.min.js.map',
|
'js/app.min.js.map',
|
||||||
'js/app.browserified.js',
|
'js/app.browserified.js',
|
||||||
@ -540,16 +559,18 @@ module.exports = function(grunt) {
|
|||||||
grunt.loadNpmTasks('grunt-svgmin');
|
grunt.loadNpmTasks('grunt-svgmin');
|
||||||
grunt.loadNpmTasks('grunt-svgstore');
|
grunt.loadNpmTasks('grunt-svgstore');
|
||||||
grunt.loadNpmTasks('grunt-shell');
|
grunt.loadNpmTasks('grunt-shell');
|
||||||
|
grunt.loadNpmTasks('grunt-angular-templates');
|
||||||
|
|
||||||
// Build tasks
|
// Build tasks
|
||||||
grunt.registerTask('dist-css', ['sass', 'autoprefixer', 'csso']);
|
grunt.registerTask('dist-css', ['sass', 'autoprefixer', 'csso']);
|
||||||
grunt.registerTask('dist-js', ['browserify', 'exorcise', 'concat', 'uglify']);
|
grunt.registerTask('dist-js', ['browserify', 'exorcise', 'ngtemplates', 'concat', 'uglify']);
|
||||||
grunt.registerTask('dist-js-app', [
|
grunt.registerTask('dist-js-app', [
|
||||||
'browserify:app',
|
'browserify:app',
|
||||||
'browserify:pbkdf2Worker',
|
'browserify:pbkdf2Worker',
|
||||||
'browserify:mailreaderWorker',
|
'browserify:mailreaderWorker',
|
||||||
'browserify:tlsWorker',
|
'browserify:tlsWorker',
|
||||||
'exorcise:app',
|
'exorcise:app',
|
||||||
|
'ngtemplates',
|
||||||
'concat:app',
|
'concat:app',
|
||||||
'concat:readSandbox',
|
'concat:readSandbox',
|
||||||
'concat:pbkdf2Worker',
|
'concat:pbkdf2Worker',
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
"crypto-lib": "~0.2.1",
|
"crypto-lib": "~0.2.1",
|
||||||
"dompurify": "~0.4.2",
|
"dompurify": "~0.4.2",
|
||||||
"grunt": "~0.4.1",
|
"grunt": "~0.4.1",
|
||||||
|
"grunt-angular-templates": "~0.5.7",
|
||||||
"grunt-autoprefixer": "~0.7.2",
|
"grunt-autoprefixer": "~0.7.2",
|
||||||
"grunt-browserify": "^3.0.1",
|
"grunt-browserify": "^3.0.1",
|
||||||
"grunt-contrib-clean": "~0.5.0",
|
"grunt-contrib-clean": "~0.5.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user