forked from StartBootstrap/startbootstrap-bare
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b83d833
commit 873d9ea
Showing
18 changed files
with
13,941 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
bower_components | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
var gulp = require('gulp'); | ||
var browserSync = require('browser-sync').create(); | ||
var pkg = require('./package.json'); | ||
|
||
// Copy vendor files from /node_modules into /vendor | ||
// NOTE: requires `npm install` before running! | ||
gulp.task('copy', function() { | ||
gulp.src(['node_modules/bootstrap/dist/**/*', '!**/npm.js', '!**/bootstrap-theme.*', '!**/*.map']) | ||
.pipe(gulp.dest('vendor/bootstrap')) | ||
|
||
gulp.src(['node_modules/jquery/dist/jquery.js', 'node_modules/jquery/dist/jquery.min.js']) | ||
.pipe(gulp.dest('vendor/jquery')) | ||
|
||
gulp.src(['node_modules/tether/dist/js/*.js']) | ||
.pipe(gulp.dest('vendor/tether')) | ||
}) | ||
|
||
// Default task | ||
gulp.task('default', ['copy']); | ||
|
||
// Configure the browserSync task | ||
gulp.task('browserSync', function() { | ||
browserSync.init({ | ||
server: { | ||
baseDir: '' | ||
}, | ||
}) | ||
}) | ||
|
||
// Dev task with browserSync | ||
gulp.task('dev', ['browserSync'], function() { | ||
// Reloads the browser whenever HTML or CSS files change | ||
gulp.watch('css/*.css', browserSync.reload); | ||
gulp.watch('*.html', browserSync.reload); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,37 @@ | ||
{ | ||
"name": "startbootstrap-bare", | ||
"title": "Bare", | ||
"description": "An unstlyed starter template for Bootstrap 4 with predefined file paths for easy development.", | ||
"name": "startbootstrap-bare", | ||
"version": "4.0.0-alpha", | ||
"description": "A basic HTML starter template for Bootstrap", | ||
"keywords": [ | ||
"css", | ||
"sass", | ||
"html", | ||
"responsive", | ||
"theme", | ||
"template" | ||
], | ||
"homepage": "http://startbootstrap.com/template-overviews/bare", | ||
"author": "Start Bootstrap", | ||
"license": { | ||
"type": "MIT", | ||
"url": "https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE" | ||
"bugs": { | ||
"url": "https://github.com/BlackrockDigital/startbootstrap-bare/issues", | ||
"email": "[email protected]" | ||
}, | ||
"license": "MIT", | ||
"author": "Start Bootstrap", | ||
"contributors": [ | ||
"David Miller (http://davidmiller.io/)" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/BlackrockDigital/startbootstrap-bare.git" | ||
}, | ||
"dependencies": { | ||
"bootstrap": "^4.0.0-alpha.6", | ||
"jquery": "^3.2.1", | ||
"tether": "^1.4.0" | ||
}, | ||
"devDependencies": { | ||
"browser-sync": "^2.18.8", | ||
"gulp": "^3.9.1" | ||
} | ||
} |
Oops, something went wrong.