Skip to content

Commit

Permalink
update dependencies, run npm start script from local gulp install, re…
Browse files Browse the repository at this point in the history
…move unused font awesome assets
  • Loading branch information
davidtmiller committed Jun 13, 2019
1 parent b48f2b1 commit 47e7400
Show file tree
Hide file tree
Showing 1,607 changed files with 494 additions and 25,405 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ After installation, run `npm install` and then run `npm start` which will open u
- `gulp js` minifies the themes JS file
- `gulp vendor` copies dependencies from node_modules to the vendor directory

You must have npm and Gulp installed globally on your machine in order to use these features.
You must have npm installed globally in order to use this build environment.

## Bugs and Issues

Expand Down
2 changes: 1 addition & 1 deletion css/resume.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Start Bootstrap - Resume v5.0.6 (https://startbootstrap.com/template-overviews/resume)
* Start Bootstrap - Resume v5.0.7 (https://startbootstrap.com/template-overviews/resume)
* Copyright 2013-2019 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-resume/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion css/resume.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ function modules() {
// Bootstrap
var bootstrap = gulp.src('./node_modules/bootstrap/dist/**/*')
.pipe(gulp.dest('./vendor/bootstrap'));
// Font Awesome
var fontAwesome = gulp.src('./node_modules/@fortawesome/**/*')
.pipe(gulp.dest('./vendor'));
// Font Awesome CSS
var fontAwesomeCSS = gulp.src('./node_modules/@fortawesome/fontawesome-free/css/**/*')
.pipe(gulp.dest('./vendor/fontawesome-free/css'));
// Font Awesome Webfonts
var fontAwesomeWebfonts = gulp.src('./node_modules/@fortawesome/fontawesome-free/webfonts/**/*')
.pipe(gulp.dest('./vendor/fontawesome-free/webfonts'));
// jQuery Easing
var jqueryEasing = gulp.src('./node_modules/jquery.easing/*.js')
.pipe(gulp.dest('./vendor/jquery-easing'));
Expand All @@ -64,7 +67,7 @@ function modules() {
'!./node_modules/jquery/dist/core.js'
])
.pipe(gulp.dest('./vendor/jquery'));
return merge(bootstrap, fontAwesome, jquery, jqueryEasing);
return merge(bootstrap, fontAwesomeCSS, fontAwesomeWebfonts, jquery, jqueryEasing);
}

// CSS task
Expand Down
2 changes: 1 addition & 1 deletion js/resume.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Start Bootstrap - Resume v5.0.6 (https://startbootstrap.com/template-overviews/resume)
* Start Bootstrap - Resume v5.0.7 (https://startbootstrap.com/template-overviews/resume)
* Copyright 2013-2019 Start Bootstrap
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-resume/blob/master/LICENSE)
*/
Expand Down
91 changes: 44 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"title": "Resume",
"name": "startbootstrap-resume",
"version": "5.0.6",
"version": "5.0.7",
"scripts": {
"start": "gulp watch"
"start": "node_modules/.bin/gulp watch"
},
"description": "Resume is a simple, yet elegant resume and CV theme for Bootstrap 4.",
"keywords": [
Expand All @@ -29,13 +29,13 @@
"url": "https://github.com/BlackrockDigital/startbootstrap-resume.git"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.8.2",
"@fortawesome/fontawesome-free": "5.9.0",
"bootstrap": "4.3.1",
"jquery": "3.4.1",
"jquery.easing": "^1.4.1"
},
"devDependencies": {
"browser-sync": "2.26.5",
"browser-sync": "2.26.7",
"del": "4.1.1",
"gulp": "4.0.2",
"gulp-autoprefixer": "6.1.0",
Expand Down
34 changes: 0 additions & 34 deletions vendor/fontawesome-free/LICENSE.txt

This file was deleted.

Loading

0 comments on commit 47e7400

Please sign in to comment.