Skip to content

Commit

Permalink
1.2 plus build process
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpilott committed Jan 16, 2018
1 parent 75599c2 commit c8b337b
Show file tree
Hide file tree
Showing 5 changed files with 2,157 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.DS_Store
config.codekit3
node_modules
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "reboot",
"version": "1.2",
"license": "MIT",
"description": "The Creative Little Reboot is an opionated style reset supporting modern browsers and IE11 😒",
"repository": {
"type": "git",
"url": "git+https://github.com/creativelittledots/reboot.css"
},
"author": "Matt Pilott",
"bugs": {
"url": "https://github.com/creativelittledots/reboot.css/issues"
},
"homepage": "https://github.com/creativelittledots/reboot.css#readme",
"devDependencies": {
"autoprefixer": "^7.2.3",
"node-sass": "^4.7.2",
"onchange": "^3.3.0",
"postcss-cli": "^4.1.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR",
"iOS 9",
"not ie_mob <= 12",
"not ie <= 10",
"not blackberry <= 7"
],
"scripts": {
"scss": "node-sass --omit-source-map-url --output-style compressed reboot.scss reboot.css",
"autoprefixer": "postcss --use autoprefixer --replace ./reboot.css --no-map",
"build": "yarn run scss --silent && yarn run autoprefixer --silent",
"watch": "onchange './*.scss' -- yarn run build --silent",
"postinstall": "yarn run watch --silent"
}
}
2 changes: 1 addition & 1 deletion reboot.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions reboot.scss
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/*----------------------------------------------------------------------------*\
#REBOOT BROWSER STYLES
- Version: 1.1
- Version: 1.2
- Author: Creative Little Dots
- Site: http://creativelittle.uk/reboot
- Copyright: 2017, Creative Little Dots
- Copyright: 2018, Creative Little Dots
– License: MIT | http://goo.gl/p3bexl
- Mentions: Based on sanitize https://goo.gl/a3DzGd
\*----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------*\
1. Set background size to cover in all browsers (opinionated).
2. Remove repeating backgrounds in all browsers (opinionated).
Expand Down
Loading

0 comments on commit c8b337b

Please sign in to comment.