Skip to content

Commit

Permalink
feat: adding package json, gulp, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
machad0 committed Feb 5, 2017
1 parent 255af9c commit 8177e76
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
1 change: 1 addition & 0 deletions .ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
18 changes: 18 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const gulp = require('gulp'),
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
connect = require('gulp-connect');

gulp.task('webserver', () => {
connect.server({
livereload: true
});
});
gulp.watch([
'js/*.js',
'lib/*.js'
]);
gulp.task('default', [
'webserver'
]);
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="800">
<meta property="og:image:height" content="338">
<script type="text/javascript" src="js/jquery-1.10.2.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-animate.js"></script>
<script type="text/javascript" src="lib/jquery-1.10.2.js"></script>
<script type="text/javascript" src="lib/angular.min.js"></script>
<script type="text/javascript" src="lib/angular-animate.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/directive.js"></script>
<script type="text/javascript" src="js/controller.js"></script>
Expand Down Expand Up @@ -233,4 +233,4 @@ <h1>Lucas Personal Desktop '16</h1>
</div>
</div>
</footer>
</html>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
34 changes: 34 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "lucas-personal-desktop",
"version": "1.0.0",
"description": "Personalized CV with win95 aesthetics",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/machad0/lucas-personal-desktop.git"
},
"keywords": [
"win95",
"desktop",
"aesthetics",
"CV"
],
"author": "Lucas Machado",
"license": "ISC",
"bugs": {
"url": "https://github.com/machad0/lucas-personal-desktop/issues"
},
"homepage": "https://machad0.github.io/lucas-personal-desktop/",
"dependencies": {
"gulp-concat": "^2.6.1",
"gulp-connect": "^5.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.1"
},
"devDependencies": {
"gulp": "^3.9.1"
}
}
Binary file added templates/lucas-figueira-curriculum-eng.pdf
Binary file not shown.

0 comments on commit 8177e76

Please sign in to comment.