-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first pass at integrating `offline-plugin` * first pass at asset hashing (just js & css for now) * dependency updates * yarn.lock post-merge * hashing tweaks/buildout * asset caching readme coverage * asset caching readme coverage * asset caching readme coverage * postcss-extend integration (#42) * first pass at postcss-extend support * resolve build warning * tidying up (#43) * tidying up font sizes * no reason for footer to have an id * tidy up font sizes * tidy up header component (viva la BEM) * words of encouragement * dependency updates * only use service worker for production build * further document offline-plugin removal * further document offline-plugin removal * further document offline-plugin removal * further document offline-plugin removal * version bump (#45)
- Loading branch information
Brian Staruk
authored
May 12, 2018
1 parent
bfe28f5
commit 5bba794
Showing
18 changed files
with
341 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "starbase", | ||
"version": "1.1.4", | ||
"version": "1.2.0", | ||
"author": "Brian Staruk <[email protected]>", | ||
"contributors": [ | ||
{ | ||
|
@@ -33,8 +33,8 @@ | |
"babel-core": "^6.26.3", | ||
"babel-eslint": "^8.2.3", | ||
"babel-loader": "^7.1.4", | ||
"babel-preset-env": "^1.6.1", | ||
"caniuse-lite": "^1.0.30000832", | ||
"babel-preset-env": "^1.7.0", | ||
"caniuse-lite": "^1.0.30000839", | ||
"clean-webpack-plugin": "^0.1.19", | ||
"css-loader": "^0.28.11", | ||
"css-mqpacker": "^6.0.2", | ||
|
@@ -44,16 +44,18 @@ | |
"eslint-loader": "^2.0.0", | ||
"eslint-plugin-import": "^2.11.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.3", | ||
"eslint-plugin-react": "^7.7.0", | ||
"eslint-plugin-react": "^7.8.1", | ||
"file-loader": "^1.1.11", | ||
"html-loader": "^0.5.5", | ||
"html-webpack-plugin": "^3.2.0", | ||
"mini-css-extract-plugin": "^0.4.0", | ||
"node-sass": "^4.9.0", | ||
"offline-plugin": "^5.0.3", | ||
"postcss": "^6.0.22", | ||
"postcss-cssnext": "^3.1.0", | ||
"postcss-extend": "^1.0.5", | ||
"postcss-import": "^11.1.0", | ||
"postcss-loader": "^2.1.4", | ||
"postcss-loader": "^2.1.5", | ||
"postcss-nested": "^3.0.0", | ||
"postcss-remove-root": "0.0.2", | ||
"postcss-reporter": "^5.0.0", | ||
|
@@ -63,9 +65,9 @@ | |
"stylelint": "^9.2.0", | ||
"stylelint-config-standard": "^18.2.0", | ||
"url-loader": "^1.0.1", | ||
"webpack": "^4.6.0", | ||
"webpack-cli": "^2.0.15", | ||
"webpack-dev-server": "^3.1.3", | ||
"webpack": "^4.8.2", | ||
"webpack-cli": "^2.1.3", | ||
"webpack-dev-server": "^3.1.4", | ||
"webpack-merge": "^4.1.2" | ||
}, | ||
"dependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import * as OfflinePluginRuntime from 'offline-plugin/runtime'; // eslint-disable-line import/no-extraneous-dependencies | ||
|
||
OfflinePluginRuntime.install(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.clearfix { | ||
&::after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#footer { | ||
font-size: 0.95em; | ||
.footer { | ||
font-size: var(--body-font-size-small); | ||
color: #888; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.