Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit c8891a9

Browse files
authored
Version 2! (#140)
This is a complete rewrite of the original workflow. Deprecating many old packages and adopting snowpack. Check the readme file for more details.
1 parent 1212fa7 commit c8891a9

Some content is hidden

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

55 files changed

+21265
-22219
lines changed

.babelrc

-11
This file was deleted.

.editorconfig

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
root = true
66

7-
87
[*]
98

109
# change these settings to your own preference
@@ -19,5 +18,8 @@ insert_final_newline = true
1918
[*.md]
2019
trim_trailing_whitespace = false
2120

22-
[{package,bower}.json]
21+
[*.pug]
22+
trim_trailing_whitespace = false
23+
24+
[*.json]
2325
indent_style = tab

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/src/scripts/web_modules/

.eslintrc.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
"prettier/prettier": ["error"]
66
},
77
"parserOptions": {
8-
"ecmaVersion": 2016,
8+
"ecmaVersion": 2018,
99
"sourceType": "module"
1010
},
1111
"env": {
1212
"es6": true,
1313
"browser": true,
14-
"node": true
14+
"node": true,
15+
"jest": true
1516
}
1617
}

.gitignore

-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
node_modules
22
dist
33
.tmp
4-
bower_components
5-
test/bower_components
64
.DS_STORE
7-
extra/
8-
deploy.sh
95
.vscode
106
*.log
11-
svg-defs.svg
12-
firebase-debug.log
13-
npm-debug.log
14-

.lintstagedrc

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"*.{png,jpeg,jpg,gif,svg}": ["imagemin-lint-staged", "git add"],
3-
"*.js": ["eslint"],
4-
"*.css": ["stylelint"],
2+
"*.{png,jpeg,jpg,gif,svg}": ["imagemin-lint-staged"],
3+
"*.js": ["eslint --fix"],
4+
"*.css": ["stylelint"]
55
}

.stylelintrc

-11
This file was deleted.

.travis.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- [6,7,8]
5-
- 10
4+
- 12
65
cache:
76
yarn: true
87
script:
9-
- yarn build
10-
before_install:
11-
- export PATH="$HOME/.yarn/bin:$PATH"
8+
- npm run build

README.md

+54-28
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,58 @@
1-
# HTML Workflow
1+
# Frontend Modern Workflow
22

3-
[![Greenkeeper badge](https://badges.greenkeeper.io/ahmadalfy/workflow.svg)](https://greenkeeper.io/)
3+
This is a complete revamp of the old workflow, rewritten from scratch with far less dependencies than the original version.
44

5-
## Tasks
6-
Tasks can be run by running `yarn gulp TASK_NAME`. If you prefer to use your global gulp installation then `gulp TASK_NAME`.
7-
- *`build`* To build production ready dist.
8-
- *`serve`* To serve content in dev mode.
9-
- *`default`* which is run by executing `gulp` or `yarn gulp` and it's the same as `serve`
5+
## Highlights in version 2
6+
7+
* Deprecating Gulp and moving to npm scripts. Gulp has been a great tool for so many years but recently it became stagnant and most of its plugins become outdated and suffer from security issues. With npm scripts we got more granularity and agility.
8+
9+
* Deprecating Browserify and moving to [Snowpack](https://www.snowpack.dev/). Snowpack is a tool that converts node modules into web modules. Best described by the following image from Snowpack documentation:
10+
11+
![img](https://www.snowpack.dev/img/how-does-it-work.jpg)
12+
13+
This eliminiate the need to bundle the code, ship code with less boilerplate, more efficient with cache invalidation ... There is a lot of interesting stuff you can check at Snowpack documentation.
14+
15+
* All tasks have unit tests.
16+
17+
* Prettier and more informative console messages.
18+
19+
## What does this workflow provide
20+
21+
* Initialize development server using BrowserSync.
22+
* Automatically refresh and reload the browser when assets change.
23+
* Build HTML templates using pug.
24+
* Use PostCSS plugins to speed up your work with CSS. The styles directory and files are follows the architecure descriped by Harry Roberts; [ITCSS](https://itcss.io/). This workflow is configured with the following PostCSS plugins
25+
* PostCSS dir pseudo class
26+
* PostCSS import
27+
* PostCSS logical
28+
* PostCSS nested
29+
* PostCSS preset-env
30+
* PostCSS reporter
31+
* PostCSS retina-bg-img
32+
* Images optimization through imagemin
33+
* Copying static assets (like images and fonts) from source to final dist directory.
34+
* Generate SVG sprites from the images you provide.
35+
* Babel configured, just drop in the plugins you want to use.
36+
* ESling and prettier
37+
* Git hooks through Husky and Lint staged
38+
* Commit messages forced to follow [Conventional commits](https://conventionalcommits.org).
39+
40+
## Getting started
41+
42+
* Clone the repository then remove the `.git` folder.
43+
* Check the `src` folder. All your code should be on that directory.
44+
45+
### Available tasks
1046

11-
## Available scripts
1247
These scripts can be run by `yarn SCRIPT_NAME` or `npm run SCRIPT_NAME`. They're available in `package.json` with key: `scripts`
13-
- `commit` Use this script to commit your changes
14-
- `optimize:images` It executes the `images` task
15-
- `build` It executes the `build` task
16-
- `start` It executes the `serve` task
17-
- `prepush` This command is run as a pre-push hook by husky. Which means everytime you try to push you code to remote, it will execute this task. Currently it lints js & css.
18-
- `lint:js` Lints js scripts in src
19-
- `lint:css` Lints css files in src
20-
- `format`: Format files in src
21-
22-
## New Features
23-
- We added husky for precommit & prepush hooks.
24-
- We added gulp-rev-all in an attempt to use revisioned files.
25-
- We separated the images optimization task from the build queue to be run on its own
26-
- We added stylelint to lint css too.
27-
- Added service worker support but disabled by default. You need to uncomment `registerServiceWorker()` in main.js to enable it.
28-
29-
## TODO
30-
- [x] Finetune the precommit & prepush hooks
31-
- [ ] Finetune gulp-rev-all task and replace it if needed
32-
- [ ] Add service workers support using workbox
48+
49+
* `snowpack` copies the scripts you configure from `node_modules` to `web_modules`. You will need to run this command every time you install a new dependency
50+
* `test` run the workflow unit tests. You probably will need to override this with your own tests.
51+
* `dev` starts the development server.
52+
* `build` run the necessary scripts to build your application.
53+
54+
## Todo
55+
56+
* Write better documentation for getting started.
57+
* Cache busting for scripts written by developers.
58+
* Support for WebP and options to generate them automatically.

0 commit comments

Comments
 (0)