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 = {
|
var basePaths = {
|
||||||
js: './js/',
|
js: './js/',
|
||||||
node: './node_modules/',
|
node: './node_modules/',
|
||||||
|
@ -270,7 +270,7 @@ gulp.task('copy-assets', ['clean-source'], function() {
|
||||||
|
|
||||||
// Run
|
// Run
|
||||||
// gulp dist
|
// 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.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', '*'])
|
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/'))
|
.pipe(gulp.dest('dist/'))
|
||||||
|
@ -283,7 +283,7 @@ gulp.task('clean-dist', function () {
|
||||||
|
|
||||||
// Run
|
// Run
|
||||||
// gulp dist-product
|
// 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.task('dist-product', ['clean-dist-product'], function() {
|
||||||
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!dist','!dist/**','!dist-product','!dist-product/**', '*'])
|
gulp.src(['**/*','!bower_components','!bower_components/**','!node_modules','!node_modules/**','!dist','!dist/**','!dist-product','!dist-product/**', '*'])
|
||||||
.pipe(gulp.dest('dist-product/'))
|
.pipe(gulp.dest('dist-product/'))
|
||||||
|
|
|
@ -7,5 +7,5 @@
|
||||||
@import "assets/underscores"; // <------- Underscores media styles
|
@import "assets/underscores"; // <------- Underscores media styles
|
||||||
|
|
||||||
// Any additional imported files //
|
// Any additional imported files //
|
||||||
@import "theme/theme"; // <--------- Thats where you can add your own design. Thats your part!
|
@import "theme/theme"; // <--------- That's where you can add your own design. Thats your part!
|
||||||
@import "theme/contact-form7"; // contact form 7 - Bootatrap 4 support
|
@import "theme/contact-form7"; // Contact Form 7 - Bootstrap 4 support
|
||||||
|
|
Reference in New Issue