-
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) * dependency updates * readme updates * app description update * readme tweaks * template tweaks * incremental version bump * replace postcss-cssnext w/ postcss-preset-env (#47) * first pass at replacing postcss-cssnext with postcss-present-env * verbiage tweaks * update dependencies * reorder base config import (after dependencies) * configs cleanup * html entity * html entity * minor version bump * dependency updates * readme verbiage tweaks (hello babel 7) * minor version bump & description update * babel & eslint updates * babel & webpack dependency updates * loader updates * webpack plugin updates * dependency updates * dependency updates * dependency updates * dependency updates * remove janky global variables * webpack config formatting cleanup * re-remove eslint preloader (already covered in normal loader) * minor version bump * readme updates * readme updates
- Loading branch information
Brian Staruk
authored
Jan 6, 2019
1 parent
e33c9ca
commit ebdbba8
Showing
13 changed files
with
2,665 additions
and
1,905 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"presets": ["env"] | ||
"presets": ["@babel/preset-env"] | ||
} |
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.4.0", | ||
"version": "1.5.0", | ||
"author": "Brian Staruk <[email protected]>", | ||
"contributors": [ | ||
{ | ||
|
@@ -30,43 +30,42 @@ | |
"keywords": [], | ||
"license": "MIT", | ||
"devDependencies": { | ||
"babel-core": "^6.26.3", | ||
"babel-eslint": "^8.2.6", | ||
"babel-loader": "^7.1.5", | ||
"babel-preset-env": "^1.7.0", | ||
"clean-webpack-plugin": "^0.1.19", | ||
"css-loader": "^1.0.0", | ||
"@babel/core": "^7.2.2", | ||
"@babel/preset-env": "^7.2.3", | ||
"babel-eslint": "^10.0.1", | ||
"babel-loader": "^8.0.5", | ||
"clean-webpack-plugin": "^1.0.0", | ||
"css-loader": "^2.1.0", | ||
"css-mqpacker": "^7.0.0", | ||
"cssnano": "^4.1.0", | ||
"eslint": "^5.6.0", | ||
"cssnano": "^4.1.8", | ||
"eslint": "^5.12.0", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"eslint-loader": "^2.1.0", | ||
"eslint-loader": "^2.1.1", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jsx-a11y": "^6.1.1", | ||
"eslint-plugin-react": "^7.11.1", | ||
"file-loader": "^2.0.0", | ||
"eslint-plugin-jsx-a11y": "^6.1.2", | ||
"eslint-plugin-react": "^7.12.3", | ||
"file-loader": "^3.0.1", | ||
"html-loader": "^0.5.5", | ||
"html-webpack-plugin": "^3.2.0", | ||
"loader-utils": "^1.1.0", | ||
"mini-css-extract-plugin": "^0.4.3", | ||
"offline-plugin": "^5.0.5", | ||
"postcss": "^7.0.2", | ||
"mini-css-extract-plugin": "^0.5.0", | ||
"offline-plugin": "^5.0.6", | ||
"postcss": "^7.0.7", | ||
"postcss-extend": "^1.0.5", | ||
"postcss-import": "^12.0.0", | ||
"postcss-import": "^12.0.1", | ||
"postcss-loader": "^3.0.0", | ||
"postcss-nested": "^4.1.0", | ||
"postcss-preset-env": "^5.3.0", | ||
"postcss-nested": "^4.1.1", | ||
"postcss-preset-env": "^6.5.0", | ||
"postcss-remove-root": "0.0.2", | ||
"postcss-reporter": "^6.0.0", | ||
"postcss-reporter": "^6.0.1", | ||
"postcss-responsive-type": "^1.0.0", | ||
"style-loader": "^0.23.0", | ||
"stylelint": "^9.5.0", | ||
"style-loader": "^0.23.1", | ||
"stylelint": "^9.9.0", | ||
"stylelint-config-standard": "^18.2.0", | ||
"url-loader": "^1.1.1", | ||
"webpack": "^4.19.1", | ||
"webpack-cli": "^3.1.0", | ||
"webpack-dev-server": "^3.1.8", | ||
"webpack-merge": "^4.1.4" | ||
"url-loader": "^1.1.2", | ||
"webpack": "^4.28.3", | ||
"webpack-cli": "^3.2.0", | ||
"webpack-dev-server": "^3.1.14", | ||
"webpack-merge": "^4.2.1" | ||
}, | ||
"dependencies": { | ||
"es6-promise": "^4.2.5", | ||
|
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,3 +1,5 @@ | ||
@import "../../variables/variables.css"; | ||
|
||
.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@import "../../variables/variables.css"; | ||
|
||
:root { | ||
--header-height-small: 2rem; | ||
--header-font-size-small: 1.5rem; | ||
|
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,3 +1,4 @@ | ||
@import "../../variables/variables.css"; | ||
@import "../../app/utilities.css"; | ||
|
||
:root { | ||
|
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 was deleted.
Oops, something went wrong.
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.