Browse Source

Update package.json, remove types folder

Types folder is not needed to be in VCS. Also changed package.json to
use correct scope.
master
TheoryOfNekomata 1 year ago
parent
commit
f236bd84db
5 changed files with 2 additions and 6 deletions
  1. +1
    -0
      .gitignore
  2. +1
    -1
      package.json
  3. +0
    -1
      types/index.d.ts
  4. +0
    -1
      types/routes.d.ts
  5. +0
    -3
      types/server.d.ts

+ 1
- 0
.gitignore View File

@@ -105,4 +105,5 @@ dist
.tern-port

.npmrc
/types/
.idea/

+ 1
- 1
package.json View File

@@ -1,5 +1,5 @@
{
"name": "@modal/webvideo-clip-web-api",
"name": "@modal-sh/webvideo-clip-web-api",
"version": "0.0.0",
"files": [
"dist",


+ 0
- 1
types/index.d.ts View File

@@ -1 +0,0 @@
import './routes';

+ 0
- 1
types/routes.d.ts View File

@@ -1 +0,0 @@
export {};

+ 0
- 3
types/server.d.ts View File

@@ -1,3 +0,0 @@
/// <reference types="node" />
declare const SERVER: import("fastify").FastifyInstance<import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault> & PromiseLike<import("fastify").FastifyInstance<import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>, import("http").IncomingMessage, import("http").ServerResponse<import("http").IncomingMessage>, import("fastify").FastifyBaseLogger, import("fastify").FastifyTypeProviderDefault>>;
export default SERVER;

Loading…
Cancel
Save