代码拉取完成,页面将自动刷新
/* jshint node: true, browser: false, es3: false */
'use strict';
module.exports = function( grunt ) {
// First register the "default" task, so it can be analyzed by other tasks.
grunt.registerTask( 'default', [ 'jshint:git', 'jscs:git' ] );
// Files that will be ignored by the "jscs" and "jshint" tasks.
var ignoreFiles = [
// Automatically loaded from .gitignore. Add more if necessary.
'lang/**',
'vendor/**',
'plugins/*/lib/**',
'plugins/**/lang/**',
'plugins/uicolor/yui/**',
'samples/toolbarconfigurator/lib/**',
'tests/adapters/jquery/_assets/**',
'tests/core/dom/_assets/**',
'tests/core/selection/_helpers/rangy.js'
];
// Basic configuration which will be overloaded by the tasks.
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
jshint: {
options: {
ignores: ignoreFiles
}
},
jscs: {
options: {
excludeFiles: ignoreFiles
}
},
plugin: {
externalDir: '../ckeditor-plugins/',
installationDir: 'plugins/'
},
imagemin: {
plugins: {
files: [ {
expand: true,
cwd: '.',
src: [
'plugins/*/images/**/*.{png,jpg,gif}'
]
} ]
},
skins: {
files: [ {
expand: true,
cwd: '.',
src: [
'skins/*/images/**/*.{png,jpg,gif}'
]
} ]
},
samples: {
files: [ {
expand: true,
cwd: '.',
src: [
'samples/**/*.{png,jpg,gif}',
'plugins/*/samples/**/*.{png,jpg,gif}'
]
} ]
}
}
} );
// Finally load the tasks.
grunt.loadTasks( 'dev/tasks' );
grunt.loadNpmTasks( 'grunt-contrib-imagemin' );
grunt.registerTask( 'images', 'Optimizes images which are not processed later by the CKBuilder (i.e. icons).', [ 'imagemin' ] );
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。