##// END OF EJS Templates
vcs: handle excessive slashes in from of the repo name path, fixes #5522
vcs: handle excessive slashes in from of the repo name path, fixes #5522

File last commit:

r3179:0e268a0f default
r3328:44e97172 default
Show More
Gruntfile.js
21 lines | 755 B | application/javascript | JavascriptLexer
grunt: config lives in separate json file so we can easly import and manipulate it when required
r745 var gruntConfig = require('./grunt_config.json');
frontend: use webpack instead of vulcanize
r3171 var webpackConfig = require('./webpack.config');
gruntConfig["webpack"] = {
options: {
stats: !process.env.NODE_ENV || process.env.NODE_ENV === 'development'
},
prod: webpackConfig,
dev: Object.assign({ watch: false }, webpackConfig)
};
project: added all source files and assets
r1
grunt: config lives in separate json file so we can easly import and manipulate it when required
r745 module.exports = function(grunt) {
grunt.initConfig(gruntConfig);
project: added all source files and assets
r1
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
polymer: introduce webcomponents to rhodecode
r689 grunt.loadNpmTasks('grunt-contrib-copy');
frontend: use webpack instead of vulcanize
r3171 grunt.loadNpmTasks('grunt-webpack');
js: support shared styles via webpack inline
r3179 grunt.registerTask('default', ['less:production', 'less:components', 'copy', 'webpack', 'concat:dist']);
project: added all source files and assets
r1 };