Skip to content

Commit

Permalink
[Dev Deps] update tape, jscs, nsp, eslint, `@ljharb/eslint-co…
Browse files Browse the repository at this point in the history
…nfig`, `@es-shims/api`
  • Loading branch information
ljharb committed Feb 13, 2016
1 parent bf680a4 commit cf4a9cf
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .jscs.json
Expand Up @@ -134,6 +134,24 @@

"requireSpacesInGenerator": {
"afterStar": true
},

"disallowSpacesInGenerator": {
"beforeStar": true
},

"disallowVar": false,

"requireArrayDestructuring": false,

"requireEnhancedObjectLiterals": false,

"requireObjectDestructuring": false,

"requireEarlyReturn": false,

"requireCapitalizedConstructorsNew": {
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"]
}
}

6 changes: 4 additions & 2 deletions index.js
Expand Up @@ -6,10 +6,12 @@ var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');

define(implementation, {
var polyfill = getPolyfill();

define(polyfill, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});

module.exports = implementation;
module.exports = polyfill;
12 changes: 6 additions & 6 deletions package.json
Expand Up @@ -41,14 +41,14 @@
"function-bind": "^1.0.2"
},
"devDependencies": {
"tape": "^4.2.2",
"tape": "^4.4.0",
"array-map": "^0.0.0",
"covert": "^1.1.0",
"jscs": "^2.5.1",
"nsp": "^2.0.2",
"eslint": "^1.9.0",
"@ljharb/eslint-config": "^1.6.0",
"@es-shims/api": "^1.0.0"
"jscs": "^2.9.0",
"nsp": "^2.2.0",
"eslint": "^2.0.0",
"@ljharb/eslint-config": "^2.0.0",
"@es-shims/api": "^1.1.0"
},
"testling": {
"files": "test/index.js",
Expand Down
2 changes: 2 additions & 0 deletions test/tests.js
@@ -1,5 +1,7 @@
'use strict';

/* global Symbol */

var keys = require('object-keys');
var map = require('array-map');
var define = require('define-properties');
Expand Down

0 comments on commit cf4a9cf

Please sign in to comment.