Skip to content

Commit

Permalink
Initialize project
Browse files Browse the repository at this point in the history
  • Loading branch information
Marian Zburlea committed Mar 31, 2018
0 parents commit dc2a6f1
Show file tree
Hide file tree
Showing 19 changed files with 1,616 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
"env"
],
"plugins":[
[
"add-module-exports"
]
]
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
40 changes: 40 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"DocumentFragment": true,
"expect": true,
"it": true,
"describe": true,
"beforeEach": true,
"runs": true,
"spyOn": true,
"spyOnEvent": true,
"waitsFor": true,
"afterEach": true
},
"rules": {
"indent": [2, 2],
"valid-jsdoc": 0,
"brace-style": [1, "stroustrup"],
"no-constant-condition": 1,
"no-underscore-dangle": 0,
"no-use-before-define": 1,
"func-names": 0,
"semi": [2, "always"],
"no-new": 0,
"new-parens": 2,
"no-ternary": 0,
"new-cap": 0,
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"quotes": [2, "single"],
"one-var": 0,
"space-infix-ops": 0,
"strict": 0,
"camelcase": [2, {"properties": "never"}]
}
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
tmp
build
npm-debug.log*
package-lock.json
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

82 changes: 82 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# Pug starter
## YouTube video tutorials

To help you out even more I've put together some YouTube tutorials:

* Install nodejs, gulp v4, git and github: https://youtu.be/A-iTEtt6SN8
* How to make a website for free in 3 easy steps 2017 - CodeTap: https://youtu.be/YBK5ZyXHumE
* The nightmare is finally over! HTML5 tutorial on how to build a webpage layout 2017 - CodeTap https://youtu.be/DdYC36N9z0E
* Build HTML5 website pain free tutorial for beginners 2017 - CodeTap https://youtu.be/qCyokdeZ6jI


Starter package for pug (former jade) template based projects.

***Note***: an boolean option **config.render.sourceFileChange** has been added to the *package.json*. The behaviour differs based on the value:
1. **true** - it renders if the source file (pug file) has been changed; This has a much much greater speed when rendering compared to the other option however it's only relevant if you make change to the current file watched by PUG. If you make a change to a file that's extended and resides in a path that contains "_", like a layout one, the change won't be reflected.
2. **false** - it renders if any pug file has been changed and compares the output with the destination file (the HTML generated now with the previous generated HTML). This can be slower when the number of files increases.

## Prerequisites
The project requires NodeJS v.4+ and gulp v4+

To install NodeJS visit [nodejs download page](https://nodejs.org/en/download/)
### Install gulp v4 globally
```bash
$ npm i -g gulp-cli
```
#### If you already have gulp v3 or lower installed
```bash
$ npm rm -g gulp
$ npm i -g gulp-cli
```
To verify what version you have installed globally, you can run the below command (and should see a similar output)
```bash
$ gulp -v
CLI version 1.2.1
```
### Install gulp 4 locally
Once globally installed, gulp v4 will then need to be installed on a per-project basis.
```bash
$ npm rm -D gulp
$ npm i -D gulpjs/gulp.git#4.0
```
## Table of contents
* [Installation](#installation)
* [Usage](#usage)
* [Style](#style)

## Installation
**BEFORE YOU INSTALL:** please read the [prerequisites](#prerequisites)
```bash
$ npm i
```
or
```bash
$ npm install
```
## Usage
To run the project in development mode and open a local server that synchronizes across multiple devices use:
```bash
npm start
```
or
```bash
npm run dev
```
To build the project for production use:
```bash
npm run prod
```
To automatically deploy your project to GitHub pages and make it available at https://[your-username].github.io/[your-project-name] use:
```bash
npm run deploy
```
## Style

The project supports both inline and external style sheets. You can have none, one or the other, or both of them.

### Single page application style
When you're building a single page app or website, there is no point in having the style sheets loaded from an external file and I'll explain why: the point of loading external style sheets is to allow the browser to cache those files and once you visit another web page of the same website, instead of making another request(s) for the style sheet file(s) to the server and having to download them, if there is no change, the browser will load them from the local drive. In a single page, there is no other page to go to therefore the external file technique doesn't apply.
### Multi page application style
In this scenario you can have either both inline and external or just external. The most common scenario is to have only one external style sheet file to be loaded and most of the time that's just fine.

If you want to improve your SEO and user experience even further, I strongly recommend to use a combination of both inline and external. The inline style sheet should only contain the minimum amount of styles for the initial visible part of the page to render. The rest of the styles can be put in the external CSS file.
28 changes: 28 additions & 0 deletions gulp/clean.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
'use strict';

import path from 'path';
import del from 'del';

const clean = ({
gulp,
config
}) => {
const dir = config.directory;

// clean development project
gulp.task('clean:development', del.bind(null, [
path.join(dir.development)
]));

// clean development project
gulp.task('clean:production', del.bind(null, [
path.join(dir.production)
]));

// clean development project
gulp.task('clean:ghpages', del.bind(null, [
path.join(dir.ghpages)
]));
};

export default clean;
36 changes: 36 additions & 0 deletions gulp/copy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
'use strict';

// This file "copy.js" was created as a copy of "font.js"
// and updated to copy files like doc and docx (documents)

import path from 'path';
import gulpConfig from './util/config';
import { getStaticFiles } from './util/util';

const copy = ({
gulp,
config,
plugins,
taskTarget
}) => {
const dir = config.directory;
const dest = path.join(taskTarget, dir.asset.replace(/\_/, ''));

gulp.task('copy', () => {
const staticFilePath = path.join(
dir.source,
dir.asset,
gulpConfig.fileExpression.copy
);

return getStaticFiles({
gulp,
staticFilePath,
config,
dest,
plugins
});
});
};

export default copy;
20 changes: 20 additions & 0 deletions gulp/deploy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
'use strict';

import path from 'path';
import del from 'del';

const deploy = ({
gulp,
config,
plugins
}) => {
const dir = config.directory;

// deploy
gulp.task('deploy', () => {
return gulp.src(path.join(dir.production, '**/*'))
.pipe(plugins.ghPages());
});
};

export default deploy;
36 changes: 36 additions & 0 deletions gulp/font.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
'use strict';

import path from 'path';
import gulpConfig from './util/config';
import { fixWindows10GulpPathIssue } from './util/util';

const font = ({
gulp,
config,
plugins,
taskTarget
}) => {
const dir = config.directory;
const dest = path.join(taskTarget, dir.asset.replace(/\_/, ''), dir.font);

gulp.task('font', () => {
return gulp
.src(path.join(
dir.source,
dir.asset,
dir.font,
gulpConfig.fileExpression.font
))
.pipe(plugins.changed(dest))
// .pipe(plugins.debug())

// Fix for Windows 10 and gulp acting crazy
.pipe(plugins.rename(file => {
fixWindows10GulpPathIssue({file, dest, plugins, config})
}))
// .pipe(plugins.debug())
.pipe(gulp.dest(dest));
});
};

export default font;
79 changes: 79 additions & 0 deletions gulp/image.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
'use strict';

import path from 'path';
import pngquant from 'imagemin-pngquant';
import jpegoptim from 'imagemin-jpegoptim';
import optipng from 'imagemin-optipng';
import gifsicle from 'imagemin-gifsicle';
import svgo from 'imagemin-svgo';
import { getImageCollection } from './util/util';
import mergeStream from 'merge-stream';
import gulpConfig from './util/config';

const image = ({
gulp,
config,
plugins,
taskTarget,
args
}) => {
const dir = config.directory;
const dest = path.join(taskTarget, dir.asset.replace(/\_/, ''), dir.image);
const templateCollection = dir.templateCollection;
const templateImagePathCollection = templateCollection.map(folderName => {
return {
source: path.join(
dir.source,
`_${folderName}`,
gulpConfig.fileExpression.image
),
dest: path.join(
taskTarget,
`${folderName}`
)
};
});

const assetImagePath = path.join(
dir.source,
dir.asset,
dir.image,
gulpConfig.fileExpression.image
);

gulp.task('image', () => {
let gulpStreamCollection = templateImagePathCollection
.map(({source, dest}) => getImageCollection({
source,
gulp,
config,
plugins,
pngquant,
jpegoptim,
gifsicle,
svgo,
dest,
optipng,
args
})
);

let assetImageCollection = getImageCollection({
source: assetImagePath,
gulp,
config,
plugins,
pngquant,
jpegoptim,
gifsicle,
svgo,
dest,
optipng,
args
});

return mergeStream(gulpStreamCollection, assetImageCollection);
});
};

export default image;
Loading

0 comments on commit dc2a6f1

Please sign in to comment.