1 Star 0 Fork 19

chentao / crypto-js

forked from Gitee 极速下载 / crypto-js 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Gruntfile.js 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
evanvosberg 提交于 2018-09-14 00:35 . Pass jshint test.
/*jshint node: true*/
'use strict';
var path = require('path');
module.exports = function (grunt) {
// Load all grunt tasks from node_modules, and config from /grunt/config
require('load-grunt-config')(grunt, {
configPath: path.join(process.cwd(), 'grunt/config'),
config: {
pkg: grunt.file.readJSON('package.json'),
meta: {
cwd: '',
cwdAll: '**/*',
source: 'src/',
sourceAll: 'src/**/*',
build: 'build/',
buildAll: 'build/**/*',
test: 'test/',
testAll: 'test/**/*',
npm: 'node_modules/',
npmAll: 'node_modules/**/*'
}
}
});
// Will load the custom tasks
grunt.loadTasks('./grunt/tasks');
grunt.registerTask('build', 'Build a bundle', [
'clean:build',
'modularize:build',
'copy:build',
'update_json:npm',
'update_json:bower'
]);
grunt.registerTask('default', 'Run code checker', [
'jsonlint',
'jshint'
]);
};
JavaScript
1
https://gitee.com/pearlshell/crypto-js.git
git@gitee.com:pearlshell/crypto-js.git
pearlshell
crypto-js
crypto-js
develop

搜索帮助