Skip to content

Commit

Permalink
build bs3 and bs4.
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Aug 25, 2017
1 parent ce3412f commit 0bfc4a1
Show file tree
Hide file tree
Showing 11 changed files with 7,977 additions and 104 deletions.
19 changes: 13 additions & 6 deletions Gruntfile.js
Expand Up @@ -76,12 +76,19 @@ module.exports = function (grunt) {

// bulid source(grunt-build.js).
build: {
all: {
baseUrl: 'src/js', // base url
startFile: 'intro.js', // intro part
endFile: 'outro.js', // outro part
outFile: 'dist/summernote.js' // out file
}
all: [{
baseUrl: 'src/js',
startFile: 'intro.js',
endFile: 'outro.js',
entryFile: 'summernote/bs3/settings',
outFile: 'dist/summernote-bs3.js'
}, {
baseUrl: 'src/js',
startFile: 'intro.js',
endFile: 'outro.js',
entryFile: 'summernote/bs4/settings',
outFile: 'dist/summernote.js'
}]
},

// for javascript convention.
Expand Down

0 comments on commit 0bfc4a1

Please sign in to comment.