Skip to content

Commit 55d5e5c

Browse files
committed
Added more source files to exclude list in _config.yml.
With this update, several more files are added to the exclude list in _config.yml that aren't necessary in the target directory. The exclude list has also been sorted to match the directory sort order, which makes it a little easier to cross check. Notably, this update adds _assets/css_ to the excluded list as the files in use within the template pages are pulled from the _assets/built_ directory leaving the _assets/css_ directory unused. Overall the intent of this update is to reduce duplicated code and compress the size of repository. Signed-off-by: Kane McConnell <[email protected]>
1 parent 7251079 commit 55d5e5c

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

_config.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,19 @@ production_url: https://jekyller.github.io/jasper2/
7575
source_url: https://github.com/jekyller/jasper2/
7676

7777
exclude:
78-
- README.md
79-
- Rakefile
78+
- assets/css
79+
- node_modules
80+
- vendor
81+
- .travis.yml
8082
- Gemfile
8183
- Gemfile.lock
84+
- GHOST.txt
85+
- gulpfile.js
86+
- LICENSE
87+
- package.json
88+
- Rakefile
89+
- README.md
90+
- script.py
8291
- changelog.md
8392
- "*.Rmd"
84-
- vendor
85-
- .travis.yml
86-
- node_modules
87-
- .git
93+
- .git*

0 commit comments

Comments
 (0)