From 55b5cd8a219d83cd2e2c753856c67106b6238185 Mon Sep 17 00:00:00 2001 From: zeh fernando Date: Sat, 19 Nov 2016 14:27:45 -0500 Subject: [PATCH] Added `simplesignal` and `prando` to notNeededPackages.json As per https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html instructions under "Publicize your declaration file", this adds references to two of my projects to the list of NPM packages that do not need declaration types. The packages themselves already ship with their own `.d.ts` file, and their `types` declared within `packages.json`. --- notNeededPackages.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/notNeededPackages.json b/notNeededPackages.json index b2c8de0dfe..9d21a32db6 100644 --- a/notNeededPackages.json +++ b/notNeededPackages.json @@ -52,6 +52,18 @@ "typingsPackageName": "typescript-services", "sourceRepoURL": "https://github.com/Microsoft/TypeScript", "asOfVersion": "2.0.0" + }, + { + "libraryName": "Prando", + "typingsPackageName": "prando", + "sourceRepoURL": "https://github.com/zeh/prando", + "asOfVersion": "1.0.0" + }, + { + "libraryName": "SimpleSignal", + "typingsPackageName": "simplesignal", + "sourceRepoURL": "https://github.com/zeh/simplesignal", + "asOfVersion": "1.0.0" } ] }