jest-mock-promise
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -7,5 +7,5 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
else if(typeof exports === 'object') | ||
exports["JestMockPromise"] = factory(); | ||
exports["jest-mock-promise"] = factory(); | ||
else | ||
root["JestMockPromise"] = factory(); | ||
root["jest-mock-promise"] = factory(); | ||
})(this, function() { | ||
@@ -12,0 +12,0 @@ return /******/ (function(modules) { // webpackBootstrap |
{ | ||
"name": "jest-mock-promise", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Synchronous Promise Mock for testing with Jest", | ||
"main": "./src/jest-mock-promise.ts", | ||
"main": "./lib/jest-mock-promise.ts", | ||
"module": "./dist/jest-mock-promise.js", | ||
@@ -7,0 +7,0 @@ "scripts": { |
const path = require('path'); | ||
const srcDir = './src/'; | ||
const srcDir = './lib/'; | ||
const destDir = 'dist'; | ||
@@ -13,3 +13,3 @@ | ||
filename: '[name].js', | ||
library: 'JestMockPromise', | ||
library: 'jest-mock-promise', | ||
libraryTarget: 'umd' | ||
@@ -16,0 +16,0 @@ }, |
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
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
26271