Merge pull request #399 from jackdh/master - Thx @jackdh
Fixes for grammar in comments.
This commit is contained in:
commit
bbcec7e92a
|
@ -1,4 +1,4 @@
|
|||
// Defining base pathes
|
||||
// Defining base paths
|
||||
var basePaths = {
|
||||
js: './js/',
|
||||
node: './node_modules/',
|
||||
|
@ -270,7 +270,7 @@ gulp.task('copy-assets', ['clean-source'], function() {
|
|||
|
||||
// Run
|
||||
// gulp dist
|
||||
// Copies the files to the /dist folder for distributon as simple theme
|
||||
// Copies the files to the /dist folder for distribution as simple theme
|
||||
gulp.task('dist', ['clean-dist'], function() {
|
||||
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!src','!src/**','!dist','!dist/**','!dist-product','!dist-product/**','!sass','!sass/**','!readme.txt','!readme.md','!package.json','!gulpfile.js','!CHANGELOG.md','!.travis.yml','!jshintignore', '!codesniffer.ruleset.xml', '*'])
|
||||
.pipe(gulp.dest('dist/'))
|
||||
|
@ -283,7 +283,7 @@ gulp.task('clean-dist', function () {
|
|||
|
||||
// Run
|
||||
// gulp dist-product
|
||||
// Copies the files to the /dist-prod folder for distributon as theme with all assets
|
||||
// Copies the files to the /dist-prod folder for distribution as theme with all assets
|
||||
gulp.task('dist-product', ['clean-dist-product'], function() {
|
||||
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!dist','!dist/**','!dist-product','!dist-product/**', '*'])
|
||||
.pipe(gulp.dest('dist-product/'))
|
||||
|
|
|
@ -7,5 +7,5 @@
|
|||
@import "assets/underscores"; // <------- Underscores media styles
|
||||
|
||||
// Any additional imported files //
|
||||
@import "theme/theme"; // <--------- Thats where you can add your own design. Thats your part!
|
||||
@import "theme/contact-form7"; // contact form 7 - Bootatrap 4 support
|
||||
@import "theme/theme"; // <--------- That's where you can add your own design. Thats your part!
|
||||
@import "theme/contact-form7"; // Contact Form 7 - Bootstrap 4 support
|
||||
|
|
Reference in New Issue