Skip to content

Commit cc3ad14

Browse files
committed
Changed svg description to assets/svg
1 parent 9e2d36c commit cc3ad14

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ A boilerplate for building web projects with [Gulp](https://gulpjs.com/). Uses G
77
- Concatenate, minify, and lint JavaScript.
88
- Compile, minify, autoprefix, and lint Sass.
99
- Optimize SVGs.
10-
- Copy static files and folders into your `dist` directory.
10+
- Render twig templates with JSON data
11+
- Copy static assets files and folders into your `dist` directory.
1112
- Automatically add headers and project details to JS and CSS files.
1213
- Create polyfilled and non-polyfilled versions of JS files.
1314
- Watch for file changes, and automatically recompile build and reload webpages.
1415

15-
**Gulp Boilerplate makes it easy to turn features on and off**, so you can reuse it for all of your projects without having to delete or modify tasks.
16+
**Turn features on and off**, so you can reuse it for all of your projects without having to delete or modify tasks.
1617

1718

1819

@@ -45,8 +46,8 @@ Add your source files to the appropriate `src` subdirectories. Gulp will process
4546

4647
- JavaScript files in the `src/js` directory will be compiled to `dist/js`. Files in subdirectories under the `js` folder will be concatenated. For example, files in `js/detects` will compile into `detects.js`.
4748
- Files in the `src/sass` directory will be compiled to `dist/css`.
48-
- SVG files placed in the `src/svg` directory will be optimized with SVGO and compiled into `dist/svg`.
49-
- Files and folders placed in the `copy` directory will be copied as-is into the `dist` directory.
49+
- SVG files placed in the `src/assets/svg/` directory will be optimized with SVGO and compiled into `dist/assets/svg/`.
50+
- Other files and folders (except `assets/svg`) placed in the `assets` directory will be copied as-is into the `dist/assets` directory.
5051

5152
### package.json
5253

@@ -91,13 +92,13 @@ Gulp generates minified and unminified CSS files. It also includes [autoprefixer
9192

9293
### SVGs
9394

94-
Place SVG files in the `src/svg` directory.
95+
Place SVG files in the `src/assets/svg/` directory.
9596

96-
SVG files will be optimized with [SVGO](https://github.com/svg/svgo) and compiled into `dist/svg`.
97+
SVG files will be optimized with [SVGO](https://github.com/svg/svgo) and compiled into `dist/assets/svg/`.
9798

9899
### Copy Files
99100

100-
Files and folders placed in the `src/copy` directory will be copied as-is into `dist`.
101+
Files and folders placed in the `src/assets` directory will be copied as-is into `dist`.
101102

102103
This is a great place to put HTML files, images, and pre-compiled assets.
103104

0 commit comments

Comments
 (0)