common-types
Advanced tools
Comparing version 1.26.2 to 1.27.0
@@ -8,2 +8,6 @@ import { url } from "./aliases"; | ||
} | ||
export interface ExportBlock { | ||
import?: string; | ||
require?: string; | ||
} | ||
export interface IPackageJson extends IDictionary { | ||
@@ -32,2 +36,3 @@ name: string; | ||
type?: "module" | "commonjs"; | ||
exports?: Record<string, ExportBlock>; | ||
/** the full list of SPDX license IDs (https://spdx.org/licenses/) */ | ||
@@ -34,0 +39,0 @@ license?: string; |
@@ -8,2 +8,6 @@ import { url } from "./aliases"; | ||
} | ||
export interface ExportBlock { | ||
import?: string; | ||
require?: string; | ||
} | ||
export interface IPackageJson extends IDictionary { | ||
@@ -32,2 +36,3 @@ name: string; | ||
type?: "module" | "commonjs"; | ||
exports?: Record<string, ExportBlock>; | ||
/** the full list of SPDX license IDs (https://spdx.org/licenses/) */ | ||
@@ -34,0 +39,0 @@ license?: string; |
{ | ||
"name": "common-types", | ||
"version": "1.26.2", | ||
"version": "1.27.0", | ||
"description": "Common Types for Typescript", | ||
@@ -17,5 +17,5 @@ "repository": "https://github.com/lifegadget/common-types", | ||
"clear": "rimraf dist", | ||
"predeploy": "yarn build", | ||
"build": "run-s clear autoindex build:rollup", | ||
"build:rollup": "rollup -c", | ||
"prebuild": "run-s clear autoindex", | ||
"prepublish": "run-s clear autoindex build", | ||
"build": "rollup -c", | ||
"build:tsc": "tsc -P tsconfig-es.json && tsc -P tsconfig-cjs.json && tsc -P tsconfig-umd.json", | ||
@@ -22,0 +22,0 @@ "watch": "run-p watch:*", |
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
429870
10215