1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-crypto-js

Клонировать/Скачать
Gruntfile.js 1.1 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
evanvosberg Отправлено 14.09.2018 01:35 89ce246
/*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'
]);
};

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-crypto-js.git
git@api.gitlife.ru:oschina-mirror/mirrors-crypto-js.git
oschina-mirror
mirrors-crypto-js
mirrors-crypto-js
develop