-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add AreTheTypesWrong CLI to continuously validate package types (#1083)
* Add AreTheTypesWrong (attw) CLI to continuously validate package types Added the dependency, update script/CI to run attw. Also, add Licensee exception for the package `(at)andrewbranch/untar.js` which does not specify its license in its manifest but has a LICENSE file specifying the (already approved) MIT license. * Create type declarations for "shescape/testing" module Create a new `.d.ts` file with type declarations for the module "shescape/testing". Following the module name `testing.js`, this declaration file is called `testing.d.ts`. Like `index.d.ts` it's a collection of manually maintained type definitions for the exports of the module it represents. The export details in the project manifest have been updated accordingly, so has the `.npmignore` allowlist. Furthermore, other configuration files have been updated in accordance with this change. The "generated" `.d.cts` file should be properly ignored and cleaned up. * Update the changelog
- Loading branch information
1 parent
46966ec
commit a7e6ce4
Showing
9 changed files
with
370 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -742,3 +742,4 @@ ignorePatterns: | |
- index.cjs | ||
- index.d.cts | ||
- testing.cjs | ||
- testing.d.cts |
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,6 +8,7 @@ crash-* | |
index.cjs | ||
index.d.cts | ||
testing.cjs | ||
testing.d.cts | ||
|
||
# ESLint | ||
.eslintcache | ||
|
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 |
---|---|---|
|
@@ -14,4 +14,6 @@ | |
!README.md | ||
!SECURITY.md | ||
!testing.cjs | ||
!testing.d.cts | ||
!testing.d.ts | ||
!testing.js |
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.