create-zuplo-api 2.3.0 → 6.2.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +20 -0
- package/README.md +120 -9
- package/dist/index.js +67 -26
- package/dist/templates/default/README-template.md +29 -0
- package/dist/templates/default/eslintrc.json +7 -0
- package/dist/templates/default/prettierrc.json +1 -0
- package/dist/templates/default/vscode/launch.json +7 -7
- package/dist/templates/default/zuplo.jsonc +1 -1
- package/dist/templates/default-empty/config/policies.json +3 -0
- package/dist/templates/default-empty/config/routes.oas.json +5 -0
- package/dist/templates/default-empty/env.example +2 -0
- package/dist/templates/default-empty/eslintrc.json +7 -0
- package/dist/templates/default-empty/gitignore +10 -0
- package/dist/templates/default-empty/prettierrc.json +1 -0
- package/dist/templates/default-empty/tsconfig.json +19 -0
- package/dist/templates/default-empty/zuplo.jsonc +4 -0
- package/package.json +43 -53
- package/LICENSE.txt +0 -20
- package/create-zuplo-api.js +0 -6
- package/dist/fe522462c16fc21893a4.js +0 -1
- package/dist/package.json +0 -3
- package/dist/src/cli.d.ts +0 -2
- package/dist/src/cli.d.ts.map +0 -1
- package/dist/src/common/analytics/lib.d.ts +0 -18
- package/dist/src/common/analytics/lib.d.ts.map +0 -1
- package/dist/src/common/constants.d.ts +0 -5
- package/dist/src/common/constants.d.ts.map +0 -1
- package/dist/src/common/machine-id/lib.d.ts +0 -2
- package/dist/src/common/machine-id/lib.d.ts.map +0 -1
- package/dist/src/common/output.d.ts +0 -9
- package/dist/src/common/output.d.ts.map +0 -1
- package/dist/src/create/create.d.ts +0 -6
- package/dist/src/create/create.d.ts.map +0 -1
- package/dist/src/create/handler.d.ts +0 -2
- package/dist/src/create/handler.d.ts.map +0 -1
- package/dist/src/create/package-json.d.ts +0 -16
- package/dist/src/create/package-json.d.ts.map +0 -1
- package/dist/src/index.d.ts +0 -3
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/utils.d.ts +0 -2
- package/dist/src/utils.d.ts.map +0 -1
- package/dist/templates/default/_README.md +0 -1
- package/dist/templates/default/eslintrc.js +0 -11
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
## Zuplo API
|
|
2
|
+
|
|
3
|
+
This is a Zuplo API that was created with
|
|
4
|
+
[`create-zuplo-api`](https://zuplo.com/docs).
|
|
5
|
+
|
|
6
|
+
## Getting Started
|
|
7
|
+
|
|
8
|
+
First, run the development server:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm run dev
|
|
12
|
+
# or
|
|
13
|
+
yarn dev
|
|
14
|
+
# or
|
|
15
|
+
pnpm dev
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the
|
|
19
|
+
result.
|
|
20
|
+
|
|
21
|
+
You can start editing the API by modifying `config/routes.oas.json`. The dev
|
|
22
|
+
server will automatically reload the API with your changes.
|
|
23
|
+
|
|
24
|
+
## Learn More
|
|
25
|
+
|
|
26
|
+
To learn more about Zuplo, you can visit the
|
|
27
|
+
[Zuplo documentation](https://zuplo.com/docs).
|
|
28
|
+
|
|
29
|
+
To connect with the community join [Discord](https://discord.zuplo.com).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -15,23 +15,23 @@
|
|
|
15
15
|
"--debug-port",
|
|
16
16
|
"9229",
|
|
17
17
|
"--port",
|
|
18
|
-
"9000"
|
|
18
|
+
"9000"
|
|
19
19
|
],
|
|
20
20
|
"console": "integratedTerminal",
|
|
21
|
-
"internalConsoleOptions": "neverOpen"
|
|
21
|
+
"internalConsoleOptions": "neverOpen"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "Zuplo Gateway",
|
|
25
25
|
"type": "node",
|
|
26
26
|
"request": "attach",
|
|
27
27
|
"restart": true,
|
|
28
|
-
"port": 9229
|
|
29
|
-
}
|
|
28
|
+
"port": 9229
|
|
29
|
+
}
|
|
30
30
|
],
|
|
31
31
|
"compounds": [
|
|
32
32
|
{
|
|
33
33
|
"name": "Launch & Attach Zuplo",
|
|
34
|
-
"configurations": ["Launch Zuplo", "Zuplo Gateway"]
|
|
35
|
-
}
|
|
36
|
-
]
|
|
34
|
+
"configurations": ["Launch Zuplo", "Zuplo Gateway"]
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
37
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"include": ["modules/**/*", ".zuplo/**/*", "tests/**/*"],
|
|
3
|
+
"exclude": ["./node_modules", "./dist"],
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"target": "ES2022",
|
|
7
|
+
"lib": ["ESNext", "WebWorker", "Webworker.Iterable"],
|
|
8
|
+
"preserveConstEnums": true,
|
|
9
|
+
"moduleResolution": "Bundler",
|
|
10
|
+
"useUnknownInCatchVariables": false,
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"importHelpers": true,
|
|
13
|
+
"removeComments": true,
|
|
14
|
+
"esModuleInterop": true,
|
|
15
|
+
"noEmit": true,
|
|
16
|
+
"strictNullChecks": true,
|
|
17
|
+
"experimentalDecorators": true
|
|
18
|
+
}
|
|
19
|
+
}
|
package/package.json
CHANGED
|
@@ -1,63 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-zuplo-api",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"types": "./dist/src/index.d.ts"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"scripts": {
|
|
18
|
-
"dev": "ncc build ./src/index.ts -w -o dist/",
|
|
19
|
-
"build": "ncc build ./src/index.ts -o ./dist/ --minify --no-cache --no-source-map-register",
|
|
20
|
-
"clean": "git clean -Xfde !.env",
|
|
21
|
-
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org zuplo --project create-zuplo-api ./dist"
|
|
3
|
+
"version": "6.2.20",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"api",
|
|
6
|
+
"openapi",
|
|
7
|
+
"zuplo"
|
|
8
|
+
],
|
|
9
|
+
"description": "Create Zuplo API with one command",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/zuplo/core",
|
|
13
|
+
"directory": "packages/create-zuplo-api"
|
|
22
14
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
15
|
+
"author": "Zuplo <support@zuplo.com>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"main": "dist/create.js",
|
|
18
|
+
"bin": {
|
|
19
|
+
"create-zuplo-api": "./dist/index.js"
|
|
25
20
|
},
|
|
26
21
|
"files": [
|
|
27
|
-
"dist"
|
|
22
|
+
"dist/*",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE.md"
|
|
28
25
|
],
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
"lint-staged": {
|
|
33
|
-
"**/*.{ts,json,md,yml,js,css,html}": [
|
|
34
|
-
"prettier --write"
|
|
35
|
-
],
|
|
36
|
-
"**/*.{ts,js}": [
|
|
37
|
-
"eslint --cache --fix --ignore-path .eslintignore"
|
|
38
|
-
]
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "ncc build ./index.ts -w -o dist/",
|
|
28
|
+
"build": "rm -rf ./dist && ncc build ./index.ts -o ./dist/ --minify --no-cache --no-source-map-register"
|
|
39
29
|
},
|
|
40
30
|
"devDependencies": {
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"@types/
|
|
45
|
-
"@types/
|
|
46
|
-
"@
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
31
|
+
"@types/async-retry": "1.4.9",
|
|
32
|
+
"@types/cross-spawn": "6.0.6",
|
|
33
|
+
"@types/node": "20.14.8",
|
|
34
|
+
"@types/prompts": "2.4.9",
|
|
35
|
+
"@types/tar": "6.1.13",
|
|
36
|
+
"@types/validate-npm-package-name": "4.0.2",
|
|
37
|
+
"@vercel/ncc": "0.38.2",
|
|
38
|
+
"async-retry": "1.3.3",
|
|
39
|
+
"ci-info": "4.0.0",
|
|
40
|
+
"commander": "12.1.0",
|
|
41
|
+
"conf": "13.0.1",
|
|
42
|
+
"cross-spawn": "7.0.3",
|
|
43
|
+
"fast-glob": "3.3.2",
|
|
44
|
+
"picocolors": "1.1.0",
|
|
45
|
+
"prompts": "2.4.2",
|
|
46
|
+
"tar": "7.4.3",
|
|
47
|
+
"update-check": "1.5.4",
|
|
48
|
+
"validate-npm-package-name": "6.0.0"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=20"
|
|
62
52
|
}
|
|
63
53
|
}
|
package/LICENSE.txt
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Copyright (c) Zuplo, Inc. All rights reserved.
|
|
2
|
-
|
|
3
|
-
This software and associated documentation files (the "Software") is intended to be used
|
|
4
|
-
only by Zuplo customers solely to develop and test applications that will be deployed
|
|
5
|
-
to Zuplo hosted services. You and others in your organization may use these files on your
|
|
6
|
-
Development Devices solely for the above stated purpose.
|
|
7
|
-
|
|
8
|
-
Outside of uses stated above, no license is granted for any other purpose including
|
|
9
|
-
without limitation the rights to use, copy, modify, merge, publish, distribute,
|
|
10
|
-
sublicense, host, and/or sell copies of the Software.
|
|
11
|
-
|
|
12
|
-
The software may include third party components with separate legal notices or governed by
|
|
13
|
-
other agreements, as described in licenses either embedded in or accompanying the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
16
|
-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
17
|
-
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
|
18
|
-
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
19
|
-
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
20
|
-
DEALINGS IN THE SOFTWARE.
|
package/create-zuplo-api.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = eval("require")("../../");
|
package/dist/package.json
DELETED
package/dist/src/cli.d.ts
DELETED
package/dist/src/cli.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/cli.ts"],"names":[],"mappings":"AAYA,wBAAsB,IAAI,kBAoCzB"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
interface IdentifyMessageV1 {
|
|
2
|
-
distinctId: string;
|
|
3
|
-
properties?: Record<string | number, any>;
|
|
4
|
-
disableGeoip?: boolean;
|
|
5
|
-
}
|
|
6
|
-
interface EventMessageV1 extends IdentifyMessageV1 {
|
|
7
|
-
event: string;
|
|
8
|
-
groups?: Record<string, string | number>;
|
|
9
|
-
sendFeatureFlags?: boolean;
|
|
10
|
-
timestamp?: Date;
|
|
11
|
-
}
|
|
12
|
-
interface ZuploEventMessage extends Omit<EventMessageV1, "distinctId"> {
|
|
13
|
-
argv: any;
|
|
14
|
-
}
|
|
15
|
-
export declare function captureEvent({ argv, event, properties, groups, sendFeatureFlags, timestamp, disableGeoip, }: ZuploEventMessage): Promise<void>;
|
|
16
|
-
export declare function shutdownAnalytics(): Promise<void>;
|
|
17
|
-
export {};
|
|
18
|
-
//# sourceMappingURL=lib.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lib.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/common/analytics/lib.ts"],"names":[],"mappings":"AAOA,UAAU,iBAAiB;IACzB,UAAU,EAAE,MAAM,CAAC;IAEnB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,GAAG,MAAM,EAAE,GAAG,CAAC,CAAC;IAC1C,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,UAAU,cAAe,SAAQ,iBAAiB;IAChD,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,CAAC;IACzC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,SAAS,CAAC,EAAE,IAAI,CAAC;CAClB;AAED,UAAU,iBAAkB,SAAQ,IAAI,CAAC,cAAc,EAAE,YAAY,CAAC;IAEpE,IAAI,EAAE,GAAG,CAAC;CACX;AA4BD,wBAAsB,YAAY,CAAC,EACjC,IAAI,EACJ,KAAK,EACL,UAAU,EACV,MAAM,EACN,gBAAgB,EAChB,SAAS,EACT,YAAY,GACb,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CA+CnC;AAED,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,IAAI,CAAC,CAEvD"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
export declare const ZUPLO_USER_ID_ARGV_KEY = "zuplo-user-id";
|
|
2
|
-
export declare const SENTRY_DSN = "https://e98d81e78b23b65fa607473823a9957a@o1036703.ingest.sentry.io/4505953760313344";
|
|
3
|
-
export declare const MAX_WAIT_PENDING_TIME_MS = 1000;
|
|
4
|
-
export declare const POST_HOG_CAPTURE_KEY = "phc_LDSwSTOvIjiDDZql2g54Q7xEXoQ0EN9RMYb3STbdz1V";
|
|
5
|
-
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/common/constants.ts"],"names":[],"mappings":"AACA,eAAO,MAAM,sBAAsB,kBAAkB,CAAC;AAGtD,eAAO,MAAM,UAAU,wFACgE,CAAC;AACxF,eAAO,MAAM,wBAAwB,OAAO,CAAC;AAG7C,eAAO,MAAM,oBAAoB,oDACkB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lib.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/common/machine-id/lib.ts"],"names":[],"mappings":"AA4EA,wBAAgB,SAAS,IAAI,MAAM,CASlC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export declare function printDiagnosticsToConsole(message?: any): void;
|
|
2
|
-
export declare function printCriticalFailureToConsoleAndExit(message?: any): void;
|
|
3
|
-
export declare function printResultToConsole(message?: any): void;
|
|
4
|
-
export declare function printTableToConsole(table: any): void;
|
|
5
|
-
export declare function printResultToConsoleAndExitGracefully(message?: any): void;
|
|
6
|
-
export declare function printTableToConsoleAndExitGracefully(table: any): void;
|
|
7
|
-
export default function setBlocking(): void;
|
|
8
|
-
export declare function textOrJson(text: string): any;
|
|
9
|
-
//# sourceMappingURL=output.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"output.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/common/output.ts"],"names":[],"mappings":"AAWA,wBAAgB,yBAAyB,CAAC,OAAO,CAAC,EAAE,GAAG,QAEtD;AAGD,wBAAgB,oCAAoC,CAAC,OAAO,CAAC,EAAE,GAAG,QAKjE;AAID,wBAAgB,oBAAoB,CAAC,OAAO,CAAC,EAAE,GAAG,QAEjD;AAID,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,GAAG,QAE7C;AAED,wBAAgB,qCAAqC,CAAC,OAAO,CAAC,EAAE,GAAG,QAKlE;AAED,wBAAgB,oCAAoC,CAAC,KAAK,EAAE,GAAG,QAK9D;AAaD,MAAM,CAAC,OAAO,UAAU,WAAW,SAalC;AAED,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,OAMtC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"create.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/create/create.ts"],"names":[],"mappings":"AAQA,wBAAsB,SAAS,CAAC,EAC9B,aAAa,EACb,IAAI,EACJ,QAAQ,GACT,EAAE;IACD,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;CAClB,iBAwCA"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"handler.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/create/handler.ts"],"names":[],"mappings":"AASA,wBAAsB,MAAM,kBAkC3B"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export interface PackageJson {
|
|
2
|
-
name: string;
|
|
3
|
-
version: string;
|
|
4
|
-
author: string;
|
|
5
|
-
copyright: string;
|
|
6
|
-
scripts?: Record<string, string>;
|
|
7
|
-
dependencies: Record<string, string>;
|
|
8
|
-
devDependencies?: Record<string, string>;
|
|
9
|
-
packageManager?: string;
|
|
10
|
-
overrides?: Record<string, string>;
|
|
11
|
-
}
|
|
12
|
-
export declare function generateDefaultPackageJson(name: string): Promise<PackageJson>;
|
|
13
|
-
export declare function getPackageOverrides(): Record<string, string>;
|
|
14
|
-
export declare function getProjectPackageJson(sourceDirectory: string): Promise<PackageJson>;
|
|
15
|
-
export declare function updateProjectPackageJson(sourceDirectory: string, packageJson: PackageJson): Promise<void>;
|
|
16
|
-
//# sourceMappingURL=package-json.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"package-json.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/create/package-json.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,WAAW;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACzC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACpC;AAED,wBAAsB,0BAA0B,CAC9C,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,WAAW,CAAC,CA6BtB;AAMD,wBAAgB,mBAAmB,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAQ5D;AAED,wBAAsB,qBAAqB,CACzC,eAAe,EAAE,MAAM,GACtB,OAAO,CAAC,WAAW,CAAC,CAKtB;AAED,wBAAsB,wBAAwB,CAC5C,eAAe,EAAE,MAAM,EACvB,WAAW,EAAE,WAAW,GACvB,OAAO,CAAC,IAAI,CAAC,CAIf"}
|
package/dist/src/index.d.ts
DELETED
package/dist/src/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,UAAU,CAAC;AAChC,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC"}
|
package/dist/src/utils.d.ts
DELETED
package/dist/src/utils.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["file:///home/runner/work/create-zuplo-api/create-zuplo-api/src/utils.ts"],"names":[],"mappings":"AAEA,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,UAK9C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Zuplo API
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/**@type {import('eslint').Linter.Config} */
|
|
2
|
-
// eslint-disable-next-line no-undef
|
|
3
|
-
module.exports = {
|
|
4
|
-
root: true,
|
|
5
|
-
parser: "@typescript-eslint/parser",
|
|
6
|
-
plugins: ["@typescript-eslint", "import"],
|
|
7
|
-
extends: ["prettier"],
|
|
8
|
-
rules: {
|
|
9
|
-
"no-console": "error",
|
|
10
|
-
},
|
|
11
|
-
};
|