-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify package (commonjs support only for now)
- Loading branch information
Showing
9 changed files
with
34 additions
and
109 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 0.8.0 - 2015-03-03 | ||
|
||
- Removed: bower support | ||
- Removed: component(1) support | ||
- Changed: Upgrade to color-string 0.3 | ||
|
||
--- | ||
|
||
Check out commit logs for older releases |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,29 +1,31 @@ | ||
{ | ||
"name": "color", | ||
"version": "0.8.0", | ||
"description": "Color conversion and manipulation with CSS string support", | ||
"version": "0.7.3", | ||
"author": "Heather Arthur <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
"url": "http://github.com/harthur/color.git" | ||
}, | ||
"main": "./color", | ||
"dependencies": { | ||
"color-convert": "0.5.x", | ||
"color-string": "0.3.x" | ||
}, | ||
"devDependencies": { | ||
"nomnom": "~1.5.2", | ||
"browserify": "~2.18.1", | ||
"grunt": "~0.4.1", | ||
"grunt-contrib-uglify": "~0.2.0" | ||
}, | ||
"keywords": [ | ||
"color", | ||
"colour", | ||
"css" | ||
], | ||
"authors": [ | ||
"Heather Arthur <[email protected]>", | ||
"Maxime Thirouin" | ||
], | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "http://github.com/harthur/color.git" | ||
}, | ||
"files": [ | ||
"CHANGELOG.md", | ||
"LICENSE", | ||
"index.js" | ||
], | ||
"scripts": { | ||
"test": "node test/basic.js" | ||
"test": "node test" | ||
}, | ||
"dependencies": { | ||
"color-convert": "^0.5.0", | ||
"color-string": "^0.3.0" | ||
} | ||
} |
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 @@ | ||
var Color = require("../color"), | ||
var Color = require(".."), | ||
assert = require("assert"); | ||
|
||
// Color() instance | ||
|