We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
最近写了一个angular-cuf-nav的项目,项目中的指令需要和其相应的模板build成一个js文件,以减少http请求。
Grunt 是一个基于任务的JavaScript工程命令行构建工具。
grunt.initConfig方法
用于模块配置,它接受一个对象作为参数。该对象的成员与使用的同名模块一一对应。 每个目标的具体设置,需要参考该模板的文档。就cssmin来讲,minify目标的参数具体 含义如下: expand:如果设为true,就表示下面文件名的占位符(即*号)都要扩展成具体的文件名。 cwd:需要处理的文件(input)所在的目录。 src:表示需要处理的文件。如果采用数组形式,数组的每一项就是一个文件名,可以使用通配符。 dest:表示处理后的文件名或所在目录。 ext:表示处理后的文件后缀名。
grunt常用函数说明:
grunt常用模块:
package.json
{ "name": "angular-cuf-nav", "version": "0.0.0", "description": "Angular Navigation Menu", "author": "", "license": "MIT", "devDependencies": { "bower": "^1.3.12", "grunt": "^0.4.5", "grunt-contrib-clean": "^0.6.0", "grunt-contrib-concat": "^0.5.0", "grunt-contrib-copy": "^0.7.0", "grunt-contrib-cssmin": "^0.11.0", "grunt-contrib-htmlmin": "^0.3.0", "grunt-contrib-uglify": "^0.7.0", "grunt-html2js": "^0.3.0", "grunt-ngmin": "0.0.3", "load-grunt-tasks": "^3.1.0", "time-grunt": "^1.0.0" } }
Gruntfile.js
module.exports = function(grunt) { // Load grunt tasks automatically 读取你的packagejson自动加载grunt task require('load-grunt-tasks')(grunt); // Time how long tasks take. Can help when optimizing build times require('time-grunt')(grunt); // Project configuration. // 注意 <%= pkg.name %> 替换变量 // 定义grunt task的配置 grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), banner: '/*! <%= pkg.name %> by hjzheng <%= grunt.template.today("yyyy-mm-dd") %> */\n', uglify: { options: { banner: '<%= banner %>' }, build: { src: 'tmp/<%= pkg.name %>.all.js', dest: 'build/js/<%= pkg.name %>.min.js' } }, cssmin: { options: { banner: '<%= banner %>' }, build: { src: 'src/css/<%= pkg.name %>.css', dest: 'build/css/<%= pkg.name %>.min.css' } }, //将template转换成JS html2js: { options: { module: 'cuf-nav-template' }, main: { src: ['src/template/*.html'], dest: 'tmp/templates.js' } }, copy: { main: { files:[ {expand: true, cwd: 'src/js', src: ['*.js'], dest: 'tmp/'} ] } }, concat: { main: { src: ['tmp/templates.js', 'tmp/<%= pkg.name %>.js'], dest: 'tmp/<%= pkg.name %>.all.js' } }, clean: { all: ['tmp', 'build/*'], tmp: ['tmp'] }, //处理uglify的bug for angular,将ngmin放在它前面处理 ngmin: { main: { src: 'tmp/<%= pkg.name %>.all.js', dest: 'tmp/<%= pkg.name %>.all.js' } } }); //Load the plugin that provides the task. 手动加载grunt task //grunt.loadNpmTasks('grunt-contrib-uglify'); //grunt.loadNpmTasks('grunt-contrib-cssmin'); // Default task(s). 设置自己的task grunt.registerTask('default', [ 'clean:all', 'copy:main', 'html2js:main', 'concat:main', 'ngmin', 'uglify', 'cssmin' ] ); };
The text was updated successfully, but these errors were encountered:
关于 html2js 在angular指令的应用 http://bahmutov.calepin.co/angular-templates.html 关于 grunt 和 angular http://stackoverflow.com/questions/21056767/angular-and-grunt
Sorry, something went wrong.
Angular-Datatables http://l-lin.github.io/angular-datatables/#/bindAngularDirective
Creating D3.js Charts using AngularJS Directives http://cloudspace.com/blog/2014/03/25/creating-d3.js-charts-using-angularjs-directives/#.VMsX4i79Q0o
CSS Shapes Editor for Chrome https://www.youtube.com/watch?v=zdWsBZiGiZc
Writing a CSS Parser in JavaScript https://medium.com/jotform-form-builder/writing-a-css-parser-in-javascript-3ecaa1719a43
Angularjs form validation https://scotch.io/tutorials/angularjs-form-validation
Sort and Filter a Table Using Angular https://scotch.io/tutorials/sort-and-filter-a-table-using-angular
Angular 调用rest API 认证的问题 https://docs.angularjs.org/api/ng/service/$http
module.run(function($http) { $http.defaults.headers.common.Authorization = 'Basic YmVlcDpib29w' });
Angular-DataTables Promise 数据源问题, 用$http返回 Promise http://stackoverflow.com/questions/12505760/processing-http-response-in-service/12513509#12513509
Angular-DataTables 数据列为空的bug http://datatables.net/reference/option/columns.defaultContent
UI-Route 页面跳转参数传递 https://scotch.io/tutorials/3-simple-tips-for-using-ui-router
No branches or pull requests
grunt 第一次尝试
起因
最近写了一个angular-cuf-nav的项目,项目中的指令需要和其相应的模板build成一个js文件,以减少http请求。
什么是grunt
Grunt 是一个基于任务的JavaScript工程命令行构建工具。
grunt入门
grunt方法
grunt.initConfig方法
用于模块配置,它接受一个对象作为参数。该对象的成员与使用的同名模块一一对应。
每个目标的具体设置,需要参考该模板的文档。就cssmin来讲,minify目标的参数具体 含义如下:
expand:如果设为true,就表示下面文件名的占位符(即*号)都要扩展成具体的文件名。
cwd:需要处理的文件(input)所在的目录。
src:表示需要处理的文件。如果采用数组形式,数组的每一项就是一个文件名,可以使用通配符。
dest:表示处理后的文件名或所在目录。
ext:表示处理后的文件后缀名。
grunt常用函数说明:
grunt常用模块:
Example (以angular-cuf-nav项目为例)
package.json
Gruntfile.js
详细Grunt使用
The text was updated successfully, but these errors were encountered: