Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

async-preloader

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-preloader - npm Package Compare versions

Comparing version 5.1.0 to 5.2.0

9

CHANGELOG.md

@@ -5,2 +5,11 @@ # Changelog

# [5.2.0](https://github.com/dmnsgn/async-preloader/compare/v5.1.0...v5.2.0) (2021-10-29)
### Features
* update dependencies and ts-jest ([6a452ff](https://github.com/dmnsgn/async-preloader/commit/6a452ffd35f11e5085d4b3945c180b81fb933815))
# [5.1.0](https://github.com/dmnsgn/async-preloader/compare/v5.0.2...v5.1.0) (2021-10-02)

@@ -7,0 +16,0 @@

38

package.json
{
"name": "async-preloader",
"version": "5.1.0",
"version": "5.2.0",
"description": "Assets preloader using ES2017 async/await and fetch.",

@@ -38,12 +38,6 @@ "keywords": [

"collectCoverageFrom": [
"src/**/*.{ts,tsx,js,jsx}"
"src/**/*.ts"
],
"coverageDirectory": "coverage",
"moduleFileExtensions": [
"json",
"ts",
"tsx",
"js",
"jsx"
],
"preset": "ts-jest/presets/js-with-ts-esm",
"resolver": "jest-ts-webcompat-resolver",

@@ -53,5 +47,3 @@ "setupFiles": [

],
"testEnvironmentOptions": {
"resources": "usable"
},
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)x?$",

@@ -62,3 +54,3 @@ "transform": {

"transformIgnorePatterns": [
"node_modules/(?!(fontfaceobserver-es)/)"
"node_modules/(?!(fontfaceobserver-es|node-fetch|fetch-blob)/)"
]

@@ -68,15 +60,15 @@ },

"fontfaceobserver-es": "^3.3.3",
"tslib": "^2.1.0"
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"core-js": "^3.9.1",
"jest": "^26.6.3",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@xmldom/xmldom": "^0.7.5",
"core-js": "^3.19.0",
"jest": "^27.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"jsdom": "^16.5.1",
"node-fetch": "^2.6.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"xmldom": "^0.5.0"
"jsdom": "^18.0.0",
"node-fetch": "^3.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},

@@ -83,0 +75,0 @@ "engines": {

/**
* Methods that can be called on a Request (object returned by fetch and that implements the [Body](https://developer.mozilla.org/en-US/docs/Web/API/Body) interface)
* Methods that can be called on a Request (object returned by fetch and that implements the [Body](https://developer.mozilla.org/en-US/docs/Web/API/Response/body) interface)
*/

@@ -14,3 +14,3 @@ export type BodyMethod = "arrayBuffer" | "blob" | "formData" | "json" | "text";

*/
export type LoadedXMLValue = Document | HTMLDocument | XMLDocument;
export type LoadedXMLValue = Document | XMLDocument;

@@ -17,0 +17,0 @@ /**

/**
* Methods that can be called on a Request (object returned by fetch and that implements the [Body](https://developer.mozilla.org/en-US/docs/Web/API/Body) interface)
* Methods that can be called on a Request (object returned by fetch and that implements the [Body](https://developer.mozilla.org/en-US/docs/Web/API/Response/body) interface)
*/

@@ -12,3 +12,3 @@ export declare type BodyMethod = "arrayBuffer" | "blob" | "formData" | "json" | "text";

*/
export declare type LoadedXMLValue = Document | HTMLDocument | XMLDocument;
export declare type LoadedXMLValue = Document | XMLDocument;
/**

@@ -15,0 +15,0 @@ * Types that can be returned by all the loaders.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc