Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
codenothing committed Oct 24, 2013
1 parent c608d9c commit 34a79d3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## v0.0.3

Installed StringIterator utility to replace manual loops


## v0.0.2

**Bug Fixes**
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -103,10 +103,10 @@ information about that fragments section of the stylesheet. Comes in the followi
}
```

* **range**: Contains the start and end positions of the fragment within the stylesheet
* **range**: Contains the start and end indexes of the fragment within the stylesheet
* **start**: Contains the starting line/character info of the fragment based on line breaks (\r\n|\r|\n)
* **end**: Contains the ending line/character info of the fragment based on line breaks (\r\n|\r|\n)
* **chunks**: When a comment exists between the start & end positions, chunks represents only the sections that belong to this position.
* **chunks**: When a comment exists between the start & end indexes, chunks represents only the sections that belong to this position.


### License
Expand Down
2 changes: 1 addition & 1 deletion build/headers.txt
@@ -1,5 +1,5 @@
/*
* CSSTree 0.0.2
* CSSTree 0.0.3
* Corey Hart @ http://www.codenothing.com
* MIT License http://www.codenothing.com/license
*/
16 changes: 12 additions & 4 deletions package.json
@@ -1,12 +1,20 @@
{
"name": "csstree",
"version": "0.0.3",
"main": "./index.js",
"description": "CSS AST Builder",
"repository": "https://github.com/codenothing/CSSTree/",
"keywords": [ "css", "parser", "tool" ],
"keywords": [ "css", "parser", "tool", "ast" ],
"author": "Corey Hart <corey@codenothing.com> (http://www.codenothing.com)",
"homepage": "http://codenothing.github.com/CSSTree/",
"version": "0.0.3pre",
"main": "./index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codenothing/CSSTree.git"
},
"bugs": {
"url": "https://github.com/codenothing/CSSTree/issues",
"email": "corey@codenothing.com"
},
"engines": {
"node": ">=0.8"
},
Expand Down

0 comments on commit 34a79d3

Please sign in to comment.