Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit af2f549

Browse files
committed
v2.4.0 fix dependencies, License LAL-1.2 & remove unused scripts
1 parent 732b727 commit af2f549

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+931
-17506
lines changed

Gruntfile.js

+3-29
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,6 @@ module.exports = function (grunt) {
33
grunt.initConfig({
44

55
bower: grunt.file.readJSON('.bowerrc'),
6-
bower_concat: {
7-
all: {
8-
dest: 'js/bower.js',
9-
dependencies: {
10-
'bootstrap-sass': 'jquery',
11-
//'jquery.svg': ['jquery'],
12-
//'jquery-mousewheel': ['jquery'],
13-
'jquery.finger': ['jquery'],
14-
'underscore': ['jquery']
15-
},
16-
exclude:[
17-
'font-awesome'
18-
]
19-
}
20-
},
216
copy:{
227
dist:{
238
files:[{
@@ -38,17 +23,6 @@ module.exports = function (grunt) {
3823
}]
3924
}
4025
},
41-
uglify: {
42-
bower: {
43-
options: {
44-
sourceMap: true,
45-
sourceMapName: 'js/cv.min.js.map'
46-
},
47-
files: {
48-
'js/cv.min.js': ['js/bower.js', 'js/cv.js']
49-
}
50-
}
51-
},
5226
cssmin: {
5327
target: {
5428
files: [{
@@ -62,11 +36,11 @@ module.exports = function (grunt) {
6236
}
6337
});
6438

65-
grunt.loadNpmTasks('grunt-bower-concat');
39+
grunt.loadNpmTasks('grunt-contrib-concat');
6640
grunt.loadNpmTasks('grunt-contrib-copy');
67-
grunt.loadNpmTasks('grunt-contrib-uglify');
6841
grunt.loadNpmTasks('grunt-contrib-cssmin');
6942

70-
grunt.registerTask('default', ['cssmin','bower_concat','uglify']);
43+
grunt.registerTask('install', ['copy']);
44+
grunt.registerTask('default', ['cssmin']);
7145

7246
};

LICENSE

+104-161
Large diffs are not rendered by default.

README.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,30 @@
1-
# curriculumvitae
2-
my own curriculum vitae
1+
# Curriculum vitæ & basic portfolio
2+
My own curriculum vitæ & basic portfolio. Printable.
3+
4+
- `HTML` is *really* static, old-style. Quick update & deploy ! files [`cv_arthur_violy.html`](cv_arthur_violy.html) & [`portfolio.html`](portfolio.html)
5+
- `CSS` is generated via `compass` and minified via a `grunt` task
6+
- no `JavaScript` except html-inline analytics trackers.
7+
8+
## Printable
9+
10+
Because a CV and portfolio must be printable !
11+
12+
## Requirements & tools
13+
14+
`npm`, `bower`, `gruntjs`, `bootstrap`, `compass-style`, `font-awesome`
15+
16+
## Setup
17+
18+
```
19+
npm install
20+
bower install
21+
grunt install
22+
grunt
23+
```
24+
25+
## Author
26+
[Arthur Violy](https://violy.net)
27+
28+
## License
29+
30+
`LAL-1.2` see [Licence Art Libre 1.2](LICENSE)

css/print.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/screen.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)