Skip to content

Commit

Permalink
fixup! Migrate CSSStyleDeclaration to WebIDL2JS
Browse files Browse the repository at this point in the history
  • Loading branch information
ExE-Boss committed Apr 1, 2020
1 parent 1bd09ee commit 6db1869
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ install:
- npm install
- npm install -g codecov
node_js:
- "8"
- "10"
- "12"

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Object.defineProperty(CSSStyleDeclaration, 'prototype', {
CSSStyleDeclaration.prototype.constructor = CSSStyleDeclaration;
Object.setPrototypeOf(CSSStyleDeclaration, Object.getPrototypeOf(origCSSStyleDeclaration));

exports.CSSStyleDeclaration = CSSStyleDeclaration;
module.exports = CSSStyleDeclaration;
2 changes: 1 addition & 1 deletion lib/CSSStyleDeclaration.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var { CSSStyleDeclaration } = require('../index.js');
var CSSStyleDeclaration = require('../index.js');

var allProperties = require('./allProperties');
var allExtraProperties = require('./allExtraProperties');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@
},
"license": "MIT",
"engines": {
"node": ">=8"
"node": ">=10.4"
}
}

0 comments on commit 6db1869

Please sign in to comment.