Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhaim1 committed Mar 14, 2020
0 parents commit 28153e4
Show file tree
Hide file tree
Showing 6 changed files with 106 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .browserlistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
defaults
not IE 11
not IE_Mob 11
maintained node versions
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Ignore directories
dist

.sass-cache/
*.css.map
*.sass.map
*.scss.map

# Numerous always-ignore extensions
*.diff
*.err
*.log
*.orig
*.rej
*.swo
*.swp
*.vi
*.zip
*~

# OS or Editor folders
._*
.cache
.DS_Store
.idea
.project
.settings
.tmproj
*.esproj
*.sublime-project
*.sublime-workspace
nbproject
Thumbs.db

# Folders to ignore
node_modules
7 changes: 7 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Copyright (c) 2020 Daniel Haim

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# @rgbyk/color
47 changes: 47 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "@rgbyk/color",
"version": "1.0.0",
"description": "A color model system that generates a full range of accessible color palettes, and utility classes from a single color.",
"keywords": [
"color",
"color system",
"color blindness",
"color palettes",
"rgb",
"ryb"
],
"homepage": "https://github.com/rgbyk/color#readme",
"bugs": {
"url": "https://github.com/rgbyk/color/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgbyk/color.git"
},
"license": "MIT",
"author": "Daniel Haim",
"scripts": {
"color": "./bin/lib/color.sh",
"color-rgb": "./bin/lib/color-rgb.sh",
"color-ryb": "./bin/lib/color-ryb.sh",
"unpack": "chmod +x ./bin/lib/unpack.sh && ./bin/lib/unpack.sh",
"watch:color": "nodemon --watch src/scss -e scss -x \"npm run color\"",
"watch:color-rgb": "nodemon --watch src/scss -e scss -x \"npm run color-rgb\"",
"watch:color-ryb": "nodemon --watch src/scss -e scss -x \"npm run color-ryb\""
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"browserslist": "^4.8.7",
"caniuse-lite": "^1.0.30001027",
"css-declaration-sorter": "^5.1.1",
"cssnano": "^4.1.10",
"nodemon": "^2.0.2",
"postcss-cli": "^7.1.0",
"postcss-combine-duplicated-selectors": "^8.1.0",
"postcss-merge-idents": "^4.0.1",
"postcss-merge-rules": "^4.0.3",
"postcss-merge-selectors": "0.0.6",
"postcss-sorting": "^5.0.1",
"sass": "^1.26.0"
}
}
11 changes: 11 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
plugins: [
require('autoprefixer')(),
require('css-declaration-sorter')(),
require('postcss-combine-duplicated-selectors')(),
require('postcss-sorting')(),
require('postcss-merge-rules')(),
require('postcss-merge-idents')(),
require('cssnano')()
],
};

0 comments on commit 28153e4

Please sign in to comment.