@aurelia/platform
Advanced tools
Comparing version 0.9.0-dev.202012201503 to 0.9.0-dev.202012231727
{ | ||
"name": "@aurelia/platform", | ||
"version": "0.9.0-dev.202012201503", | ||
"main": "dist/umd/index.js", | ||
"module": "dist/esnext/index.js", | ||
"version": "0.9.0-dev.202012231727", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/index.d.ts", | ||
@@ -30,4 +30,7 @@ "typings": "dist/index.d.ts", | ||
"lint": "eslint --cache --ext .js,.ts src/", | ||
"lint:ci": "eslint --cache --ext .js,.ts --quiet --report-unused-disable-directives src/", | ||
"build": "tsc -b", | ||
"dev": "tsc -b -w --preserveWatchOutput" | ||
"dev": "tsc -b -w --preserveWatchOutput", | ||
"publish:dev": "npm publish --tag dev", | ||
"publish:latest": "npm publish --tag latest" | ||
}, | ||
@@ -37,6 +40,6 @@ "publishConfig": { | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"typescript": "^4.0.3" | ||
}, | ||
"gitHead": "79a20811704f05091ac479fa5092311ca304803d" | ||
} | ||
} | ||
} |
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) | ||
[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lernajs.io/) | ||
[![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/) | ||
[![CircleCI](https://circleci.com/gh/aurelia/aurelia.svg?style=shield)](https://circleci.com/gh/aurelia/aurelia) | ||
[![Test Coverage](https://api.codeclimate.com/v1/badges/5ac0e13689735698073a/test_coverage)](https://codeclimate.com/github/aurelia/aurelia/test_coverage) | ||
[![npm](https://img.shields.io/npm/v/@aurelia/platform.svg?maxAge=3600)](https://www.npmjs.com/package/@aurelia/platform) | ||
@@ -7,0 +5,0 @@ # @aurelia/platform |
@@ -42,3 +42,2 @@ const lookup = new Map<object, Platform>(); | ||
this.globalThis = g; | ||
/* eslint-disable @typescript-eslint/no-unnecessary-type-assertion */ | ||
this.decodeURI = 'decodeURI' in overrides ? overrides.decodeURI! : g.decodeURI; | ||
@@ -64,3 +63,2 @@ this.decodeURIComponent = 'decodeURIComponent' in overrides ? overrides.decodeURIComponent! : g.decodeURIComponent; | ||
this.macroTaskQueue = new TaskQueue(this, this.requestMacroTask.bind(this), this.cancelMacroTask.bind(this)); | ||
/* eslint-enable @typescript-eslint/no-unnecessary-type-assertion */ | ||
} | ||
@@ -787,3 +785,3 @@ | ||
type PResolve<T> = (value?: T | PromiseLike<T>) => void; | ||
type PResolve<T> = (value: T | PromiseLike<T>) => void; | ||
type PReject<T = any> = (reason?: T) => void; | ||
@@ -790,0 +788,0 @@ let $resolve: PResolve<any>; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
137300
2200
20
1