@ts-type/package-dts
Advanced tools
Comparing version 1.0.26 to 1.0.27
@@ -6,2 +6,25 @@ # Change Log | ||
## [1.0.27](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.26...@ts-type/package-dts@1.0.27) (2020-07-05) | ||
### 🛠 Build System | ||
* **schema:** update schema ([aba1046](https://github.com/bluelovers/ws-ts-type/commit/aba1046e121a5293a2b6eb890e8c26c4193bd4ea)) | ||
* update typescript ([0e370fc](https://github.com/bluelovers/ws-ts-type/commit/0e370fc3842b4c6c2be0795ad30add6625ed9d91)) | ||
### ♻️ Chores | ||
* **deps:** update deps ([950081f](https://github.com/bluelovers/ws-ts-type/commit/950081fb179d2c787c234b30c8e45429408e1b98)) | ||
### 🔖 Miscellaneous | ||
* . ([8fe4730](https://github.com/bluelovers/ws-ts-type/commit/8fe473038c8e833c67be9e6152841d56cbffdc93)) | ||
* Update package-json schema ([c0a1e61](https://github.com/bluelovers/ws-ts-type/commit/c0a1e6127b6e32de8b79f0da755ad707d7f28225)) | ||
## [1.0.26](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.25...@ts-type/package-dts@1.0.26) (2020-06-19) | ||
@@ -8,0 +31,0 @@ |
@@ -16,2 +16,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.EnumVersionValue2 = void 0; | ||
var types_1 = require("./lib/package-json/types"); | ||
@@ -18,0 +19,0 @@ Object.defineProperty(exports, "EnumVersionValue2", { enumerable: true, get: function () { return types_1.EnumVersionValue2; } }); |
{ | ||
"name": "@ts-type/package-dts", | ||
"version": "1.0.26", | ||
"version": "1.0.27", | ||
"private": false, | ||
@@ -52,5 +52,8 @@ "description": "A Typescript type definition for NPM package json", | ||
"lint": "eslint **/*.ts", | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"pretest": "yarn run build", | ||
"test": "echo \"Error: no test specified\"", | ||
"posttest": "git commit -m \"build(schema): update schema\" ./types ./schema & echo posttest", | ||
"build": "yarn run update:schema", | ||
"prepublishOnly": "yarn run ncu && yarn run sort-package-json", | ||
"preversion": "yarn run prepublishOnly", | ||
"prepublishOnly": "yarn run test", | ||
"ncu": "npx yarn-tool ncu -u", | ||
@@ -61,4 +64,4 @@ "sort-package-json": "npx yarn-tool sort", | ||
"dependencies": { | ||
"@types/semver": "^7.2.0", | ||
"ts-type": "^1.2.23" | ||
"@types/semver": "^7.3.1", | ||
"ts-type": "^1.2.24" | ||
}, | ||
@@ -69,3 +72,3 @@ "devDependencies": { | ||
"fs-extra": "^9.0.1", | ||
"json-schema-to-typescript": "^9.1.0" | ||
"json-schema-to-typescript": "^9.1.1" | ||
}, | ||
@@ -75,3 +78,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "83a33a551b84f349b3110ac6dc8af1fb19faa75d", | ||
"gitHead": "46ad63f2aef0eb511b92ee0d83723c3828d560dc", | ||
"sharedDependencies": { | ||
@@ -78,0 +81,0 @@ "eslint-config-bluelovers": "latest" |
@@ -224,3 +224,5 @@ { | ||
"xcode11.4", | ||
"xcode11.5" | ||
"xcode11.5", | ||
"xcode11.6", | ||
"xcode12" | ||
] | ||
@@ -1256,2 +1258,5 @@ }, | ||
"$ref": "#/definitions/envVars" | ||
}, | ||
"jobs": { | ||
"$ref": "#/definitions/envVars" | ||
} | ||
@@ -1258,0 +1263,0 @@ }, |
@@ -538,2 +538,7 @@ { | ||
}, | ||
"jsxFragmentFactory": { | ||
"description": "Specify the JSX Fragment reference to use for fragements when targeting react JSX emit, e.g. 'React.Fragment' or 'Fragment'. Requires TypeScript version 4.0 or later.", | ||
"type": "string", | ||
"default": "React.Fragment" | ||
}, | ||
"alwaysStrict": { | ||
@@ -540,0 +545,0 @@ "description": "Parse in strict mode and emit 'use strict' for each source file. Requires TypeScript version 2.1 or later.", |
@@ -13,8 +13,9 @@ /* tslint:disable */ | ||
bundleDependencies?: BundledDependency; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
} | ||
| { | ||
bundledDependencies?: BundledDependency; | ||
[k: string]: any; | ||
}); | ||
[k: string]: unknown; | ||
} | ||
); | ||
/** | ||
@@ -25,3 +26,6 @@ * A person who has been involved in creating or maintaining this package | ||
| { | ||
[k: string]: any; | ||
name: string; | ||
url?: string; | ||
email?: string; | ||
[k: string]: unknown; | ||
} | ||
@@ -92,3 +96,11 @@ | string; | ||
| { | ||
[k: string]: any; | ||
/** | ||
* The url to your project's issue tracker. | ||
*/ | ||
url?: string; | ||
/** | ||
* The email address to which issues should be reported. | ||
*/ | ||
email?: string; | ||
[k: string]: unknown; | ||
} | ||
@@ -106,3 +118,3 @@ | string; | ||
url?: string; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}[]; | ||
@@ -129,3 +141,3 @@ author?: Person; | ||
| { | ||
[k: string]: any; | ||
[k: string]: string; | ||
}; | ||
@@ -170,3 +182,3 @@ /** | ||
test?: string; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}; | ||
@@ -178,3 +190,6 @@ /** | ||
| { | ||
[k: string]: any; | ||
type?: string; | ||
url?: string; | ||
directory?: string; | ||
[k: string]: unknown; | ||
} | ||
@@ -244,3 +259,3 @@ | string; | ||
config?: { | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}; | ||
@@ -272,3 +287,3 @@ dependencies?: Dependency; | ||
*/ | ||
private?: boolean; | ||
private?: boolean | ("false" | "true"); | ||
publishConfig?: { | ||
@@ -278,3 +293,3 @@ access?: "public" | "restricted"; | ||
registry?: string; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}; | ||
@@ -284,3 +299,3 @@ dist?: { | ||
tarball?: string; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}; | ||
@@ -298,3 +313,5 @@ readme?: string; | ||
| { | ||
[k: string]: any; | ||
main?: string; | ||
browser?: string; | ||
[k: string]: string; | ||
}; | ||
@@ -305,3 +322,3 @@ /** | ||
workspaces?: { | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
}; | ||
@@ -324,3 +341,3 @@ /** | ||
jspm?: CoreProperties; | ||
[k: string]: any; | ||
[k: string]: unknown; | ||
} |
@@ -411,3 +411,5 @@ /* tslint:disable */ | ||
| "xcode11.4" | ||
| "xcode11.5"; | ||
| "xcode11.5" | ||
| "xcode11.6" | ||
| "xcode12"; | ||
export type PossiblySecretString = | ||
@@ -963,2 +965,3 @@ | string | ||
matrix?: EnvVars; | ||
jobs?: EnvVars; | ||
}; | ||
@@ -965,0 +968,0 @@ before_install?: Step; |
@@ -413,2 +413,6 @@ /* tslint:disable */ | ||
/** | ||
* Specify the JSX Fragment reference to use for fragements when targeting react JSX emit, e.g. 'React.Fragment' or 'Fragment'. Requires TypeScript version 4.0 or later. | ||
*/ | ||
jsxFragmentFactory?: string; | ||
/** | ||
* Parse in strict mode and emit 'use strict' for each source file. Requires TypeScript version 2.1 or later. | ||
@@ -920,2 +924,6 @@ */ | ||
/** | ||
* Specify the JSX Fragment reference to use for fragements when targeting react JSX emit, e.g. 'React.Fragment' or 'Fragment'. Requires TypeScript version 4.0 or later. | ||
*/ | ||
jsxFragmentFactory?: string; | ||
/** | ||
* Parse in strict mode and emit 'use strict' for each source file. Requires TypeScript version 2.1 or later. | ||
@@ -922,0 +930,0 @@ */ |
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
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
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
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
306893
8826
Updated@types/semver@^7.3.1
Updatedts-type@^1.2.24