Skip to content
This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Commit 273e2c3

Browse files
committed
0.4.0
1 parent 66cf209 commit 273e2c3

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.travis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,4 @@
33
language: node_js
44

55
node_js:
6-
- 4
7-
8-
install:
9-
- npm install --ignore-scripts
6+
- 10

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changes to CSS Typed Object Model
22

3+
### 0.4.0 (May 11, 2018)
4+
5+
- Fix add method
6+
- Support multiplication and division by number primatives
7+
38
### 0.3.0 (April 17, 2018)
49

510
- Only polyfill constructors on the window object passed into `polyfill()`

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ scope and avoid unrelated commits.
2626
cd css-typed-om
2727

2828
# Assign the original repo to a remote called "upstream"
29-
git remote add upstream [email protected]:jonathantneal/css-typed-om.git
29+
git remote add upstream [email protected]:csstools/css-typed-om.git
3030

3131
# Install the tools necessary for testing
3232
npm install

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ They all stringify back into compliant CSS.
171171

172172
[npm-url]: https://www.npmjs.com/package/css-typed-om
173173
[npm-img]: https://img.shields.io/npm/v/css-typed-om.svg
174-
[cli-url]: https://travis-ci.org/jonathantneal/css-typed-om
175-
[cli-img]: https://img.shields.io/travis/jonathantneal/css-typed-om.svg
174+
[cli-url]: https://travis-ci.org/csstools/css-typed-om
175+
[cli-img]: https://img.shields.io/travis/csstools/css-typed-om.svg
176176

177-
[CSS Typed Object Model]: https://github.com/jonathantneal/css-typed-om
177+
[CSS Typed Object Model]: https://github.com/csstools/css-typed-om
178178
[CSS Typed OM Level 1]: https://drafts.css-houdini.org/css-typed-om-1/

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "css-typed-om",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Use CSS Typed Object Model in the browser",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
7-
"repository": "jonathantneal/css-typed-om",
8-
"homepage": "https://github.com/jonathantneal/css-typed-om#readme",
9-
"bugs": "https://github.com/jonathantneal/css-typed-om/issues",
7+
"repository": "csstools/css-typed-om",
8+
"homepage": "https://github.com/csstools/css-typed-om#readme",
9+
"bugs": "https://github.com/csstools/css-typed-om/issues",
1010
"main": "index.umd.js",
1111
"module": "index.es.js",
1212
"files": [

0 commit comments

Comments
 (0)