Skip to content

Commit

Permalink
package to use in test262-harness
Browse files Browse the repository at this point in the history
  • Loading branch information
astlaurent1 committed Apr 5, 2019
1 parent 3f6f4f6 commit 631acd6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
1 change: 1 addition & 0 deletions dist/promise-allsettled.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,16 @@
"dependencies": {
"define-properties": "^1.1.3",
"es-abstract": "^1.13.0",
"function-bind": "^1.1.1"
"function-bind": "^1.1.1",
"webpack": "^4.29.6"
},
"devDependencies": {
"@es-shims/api": "^2.1.2",
"@ljharb/eslint-config": "^13.1.1",
"es6-shim": "^0.35.5",
"eslint": "^5.15.3",
"safe-publish-latest": "^1.1.2",
"tape": "^4.10.1"
"tape": "^4.10.1",
"webpack-cli": "^3.3.0"
}
}
4 changes: 4 additions & 0 deletions promise-allsettled.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
'use strict';

var allSettled = require('./index');
allSettled.shim();
11 changes: 11 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
'use strict';

var path = require('path');

module.exports = {
entry: './promise-allsettled.js',
output: {
filename: 'promise-allsettled.js',
path: path.resolve(__dirname, 'dist')
}
};

0 comments on commit 631acd6

Please sign in to comment.