Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare v5.0.0 #16

Merged
merged 2 commits into from
Feb 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
113 changes: 2 additions & 111 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mrhenry/polyfill-library",
"version": "4.8.1",
"version": "5.0.0",
"description": "A polyfill combinator",
"main": "lib/index.js",
"repository": {
Expand All @@ -13,7 +13,7 @@
"scripts": {
"lint": "eslint polyfills lib tasks test",
"lint-config": "node tasks/lint-config/index.js",
"clean": "rimraf ./polyfills/__dist && node tasks/clean",
"clean": "node tasks/clean",
"build": "npm run clean && node tasks/updatesources && node tasks/buildsources/buildsources",
"watch": "npm run clean && node tasks/updatesources && node tasks/buildsources/watchsource",
"fmt": "eslint . --fix",
Expand All @@ -24,10 +24,9 @@
"test-node": "nyc mocha test/node/**/*.js",
"test-node-unit": "mocha test/unit --recursive",
"test": "npm run build && npm run test-node && npm run test-node-unit && npm run test-polyfills",
"prepublishOnly": "npm run build && mv polyfills/__dist __dist && rimraf polyfills && mkdir polyfills && mv __dist polyfills/__dist",
"prepublishOnly": "npm run build",
"create-new-polyfill": "node ./tasks/create-new-polyfill.js",
"update-browserstack-list": "node ./tasks/updatebrowserstacklist.js",
"version": "auto-changelog -p"
"update-browserstack-list": "node ./tasks/updatebrowserstacklist.js"
},
"license": "MIT",
"engines": {
Expand Down Expand Up @@ -69,8 +68,6 @@
"apicache": "^1.6.3",
"array.prototype.flatmap": "^1.2.1",
"audio-context-polyfill": "^1.0.0",
"auto-changelog": "^2.2.1",
"bluebird": "^3.7.2",
"browserstack": "1.6.1",
"browserstack-local": "^1.5.2",
"chai": "^4.3.4",
Expand Down Expand Up @@ -101,7 +98,6 @@
"nyc": "^15.0.0",
"picturefill": "^3.0.1",
"proclaim": "^3.6.0",
"rimraf": "^3.0.0",
"seamless-scroll-polyfill": "1.2.4",
"semver": "^7.3.7",
"sinon": "^15.0.0",
Expand Down
6 changes: 0 additions & 6 deletions test/polyfills/remotetest.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
"use strict";

global.Promise = require("bluebird");
// Enable long stack traces
Promise.config({
longStackTraces: true
});

const wait = duration => new Promise(resolve => setTimeout(resolve, duration));

// By default, promises fail silently if you don't attach a .catch() handler to them.
Expand Down
Loading