-
-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 0.8 typings, add type tests (#786)
* Fixes typing issues with 0.8 and add initial typing tests * Fix error in utils typing import * Confirmed fixed build, test, and type test, left comments * Moved lengthy `@core` typings to subfiles and barrel index * Initial work to get configure composure working * Fixed error introduced in prior commit, improved type tests * Fixed issues with plugin or types being null * Code cleanup, final fixes * add type tests to CI * Added initial 3.1 types * Move @core/jimp to a class rather than an interface * Minor cleanup, linting, etc
- Loading branch information
1 parent
11f2dcb
commit 6c8b9de
Showing
42 changed files
with
1,530 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
"repository": "oliver-moran/jimp", | ||
"author": "Andrew Lisowski <[email protected]>", | ||
"publishConfig": { | ||
"registry":"https://registry.npmjs.org/" | ||
}, | ||
"registry": "https://registry.npmjs.org/" | ||
}, | ||
"scripts": { | ||
"lint": "xo", | ||
"test": "cross-env BABEL_ENV=test mocha --require @babel/register './packages/**/test/**/*.test.js' --require ts-node/register ./packages/**/test/*.test.ts", | ||
|
@@ -20,7 +20,9 @@ | |
"clean:build": "rm -rf packages/**/es packages/**/dist", | ||
"build": "npm run clean:build && lerna run build --stream", | ||
"build:watch": "lerna run build:watch --parallel", | ||
"release": "auto shipit" | ||
"release": "auto shipit", | ||
"tsTest:custom": "dtslint packages/custom/types --expectOnly", | ||
"tsTest:main": "dtslint packages/jimp/types --expectOnly" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.1.0", | ||
|
@@ -36,6 +38,7 @@ | |
"babel-plugin-source-map-support": "^2.0.1", | ||
"babel-plugin-transform-inline-environment-variables": "^0.4.3", | ||
"cross-env": "^5.2.0", | ||
"dtslint": "^0.9.6", | ||
"eslint-plugin-prettier": "^2.6.2", | ||
"express": "^4.16.3", | ||
"husky": "^1.0.0-rc.15", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.