Skip to content

Commit

Permalink
3.0.0
Browse files Browse the repository at this point in the history
- Updated: Rewrote plugin
- Updated: Rewrote tests
- Updated: boilerplate conventions (Node v6.9.1 LTS)
  • Loading branch information
jonathantneal committed Dec 6, 2016
1 parent 1d07fab commit 31079e1
Show file tree
Hide file tree
Showing 29 changed files with 514 additions and 644 deletions.
15 changes: 0 additions & 15 deletions .editorconfig

This file was deleted.

146 changes: 0 additions & 146 deletions .eslintrc

This file was deleted.

4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules/
node_modules
npm-debug.log
test/fixtures/*.actual.css
test/*.result.css
102 changes: 0 additions & 102 deletions .jscsrc

This file was deleted.

2 changes: 0 additions & 2 deletions .npmignore

This file was deleted.

25 changes: 25 additions & 0 deletions .tape.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
'postcss-write-svg': {
'basic': {
message: 'supports basic usage'
},
'basic:base64': {
message: 'supports { utf8: false } usage',
options: {
utf8: false
}
},
'border-image': {
message: 'supports SVG border-image'
},
'g': {
message: 'supports g tag'
},
'path': {
message: 'supports path tag'
},
'text': {
message: 'supports text in SVG'
}
}
};
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
sudo: false
language: node_js
node_js:
- stable
- "0.12"
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,38 @@
## 2.1.0
# Changes to Write SVG

### 3.0.0 (November 27, 2016)

- Updated: Rewrote plugin
- Updated: Rewrote tests
- Updated: boilerplate conventions (Node v6.9.1 LTS)

### 2.1.0 (February 26, 2016)

- Added: Fixed support for `var()` fallback values
- Added: Lint configurations
- Added: Smaller UTF-8 encoding
- Updated: Documentation and dependencies

## 2.0.0 (2015-10-26)
### 2.0.0 (October 26, 2015)

- Added: Refactored plugin for better multiplexing syntax
- Added: `encoding` option to better control SVG output

## 1.1.2 (2015-09-12)
### 1.1.2 (September 12, 2015)

- Updated: Iterative methods with inline iteratives
- Updated: Cleanup variable names and method names
- Updated: Tests to include properties alongside SVG
- Removed: Extend dependency

## 1.1.1 (2015-09-11)
### 1.1.1 (September 11, 2015)

- Updated: Only escape required characters

## 1.1.0 (2015-09-11)
### 1.1.0 (September 11, 2015)

- Added: Text content support

## 1.0.0 (2015-09-11)
### 1.0.0 (September 11, 2015)

- Added: Initial release
Loading

0 comments on commit 31079e1

Please sign in to comment.