博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Grunt] External Config
阅读量:5055 次
发布时间:2019-06-12

本文共 1608 字,大约阅读时间需要 5 分钟。

Let's combine uglifying, watching, and config stuff into one Grunt file to make it more of a standard Grunt file.

 

Install:


npm install gruntnpm install grunt-contrib-watchnpm install grunt-contrib-uglify

 

Example:


/** * Created by Answer1215 on 11/15/2014. */module.exports = function(grunt){    // Version one    //grunt.initConfig({
// // uglify:{
// dist:{
// files:{
// "dist/app.min.js": "app/**/*.js" // } // } // }, // watch:{
// files:"app/**/*.js", // tasks: 'uglify' // } //}); //version two: using template //grunt.initConfig({
// conf: {
// input: "app/**/*.js" // }, // uglify:{
// dist:{
// files:{
// "dist/app.min.js": "<%= conf.input %>" // } // } // }, // watch:{
// files: "<%= conf.input %>", // tasks: 'uglify' // } //}); //version three: using config json file grunt.initConfig({ conf: grunt.file.readJSON('config.json'), uglify: { dist:{ files:{ "dist/app.min.js": "<%= conf.input %>" } } }, watch: { files: "<%= conf.input %>", tasks: ['uglify'] } }); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-uglify');}

 config.json

{  "input": "app/**/*.js"}

 

转载于:https://www.cnblogs.com/Answer1215/p/4100953.html

你可能感兴趣的文章
Market entry case
查看>>
bzoj1230 开关灯 线段树
查看>>
LinearLayout
查看>>
学习python:day1
查看>>
css3动画属性
查看>>
第九次团队作业-测试报告与用户使用手册
查看>>
Equal Sides Of An Array
查看>>
CentOS笔记-用户和用户组管理
查看>>
Mongodb 基本命令
查看>>
Qt中QTableView中加入Check列实现
查看>>
“富豪相亲大会”究竟迷失了什么?
查看>>
控制文件的备份与恢复
查看>>
返回代码hdu 2054 A==B?
查看>>
Flink独立集群1
查看>>
iOS 8 地图
查看>>
20165235 第八周课下补做
查看>>
[leetcode] 1. Two Sum
查看>>
iOS 日常工作之常用宏定义大全
查看>>
PHP的SQL注入技术实现以及预防措施
查看>>
MVC Razor
查看>>