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.
Files changed (43) hide show
  1. package/LICENSE.md +20 -0
  2. package/README.md +120 -9
  3. package/dist/index.js +67 -26
  4. package/dist/templates/default/README-template.md +29 -0
  5. package/dist/templates/default/eslintrc.json +7 -0
  6. package/dist/templates/default/prettierrc.json +1 -0
  7. package/dist/templates/default/vscode/launch.json +7 -7
  8. package/dist/templates/default/zuplo.jsonc +1 -1
  9. package/dist/templates/default-empty/config/policies.json +3 -0
  10. package/dist/templates/default-empty/config/routes.oas.json +5 -0
  11. package/dist/templates/default-empty/env.example +2 -0
  12. package/dist/templates/default-empty/eslintrc.json +7 -0
  13. package/dist/templates/default-empty/gitignore +10 -0
  14. package/dist/templates/default-empty/prettierrc.json +1 -0
  15. package/dist/templates/default-empty/tsconfig.json +19 -0
  16. package/dist/templates/default-empty/zuplo.jsonc +4 -0
  17. package/package.json +43 -53
  18. package/LICENSE.txt +0 -20
  19. package/create-zuplo-api.js +0 -6
  20. package/dist/fe522462c16fc21893a4.js +0 -1
  21. package/dist/package.json +0 -3
  22. package/dist/src/cli.d.ts +0 -2
  23. package/dist/src/cli.d.ts.map +0 -1
  24. package/dist/src/common/analytics/lib.d.ts +0 -18
  25. package/dist/src/common/analytics/lib.d.ts.map +0 -1
  26. package/dist/src/common/constants.d.ts +0 -5
  27. package/dist/src/common/constants.d.ts.map +0 -1
  28. package/dist/src/common/machine-id/lib.d.ts +0 -2
  29. package/dist/src/common/machine-id/lib.d.ts.map +0 -1
  30. package/dist/src/common/output.d.ts +0 -9
  31. package/dist/src/common/output.d.ts.map +0 -1
  32. package/dist/src/create/create.d.ts +0 -6
  33. package/dist/src/create/create.d.ts.map +0 -1
  34. package/dist/src/create/handler.d.ts +0 -2
  35. package/dist/src/create/handler.d.ts.map +0 -1
  36. package/dist/src/create/package-json.d.ts +0 -16
  37. package/dist/src/create/package-json.d.ts.map +0 -1
  38. package/dist/src/index.d.ts +0 -3
  39. package/dist/src/index.d.ts.map +0 -1
  40. package/dist/src/utils.d.ts +0 -2
  41. package/dist/src/utils.d.ts.map +0 -1
  42. package/dist/templates/default/_README.md +0 -1
  43. 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,7 @@
1
+ {
2
+ "root": true,
3
+ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
4
+ "parser": "@typescript-eslint/parser",
5
+ "parserOptions": { "project": ["./tsconfig.json"] },
6
+ "plugins": ["@typescript-eslint"]
7
+ }
@@ -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
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "version": 1,
3
- "compatibilityDate": "2024-09-02"
3
+ "compatibilityDate": "2024-09-02",
4
4
  }
@@ -0,0 +1,3 @@
1
+ {
2
+ "policies": []
3
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "openapi": "3.1.0",
3
+ "info": {},
4
+ "paths": {}
5
+ }
@@ -0,0 +1,2 @@
1
+ EXAMPLE_SECRET=👀 What you looking at?
2
+ EXAMPLE_CONFIG=https://twitter.com/zuplo
@@ -0,0 +1,7 @@
1
+ {
2
+ "root": true,
3
+ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
4
+ "parser": "@typescript-eslint/parser",
5
+ "parserOptions": { "project": ["./tsconfig.json"] },
6
+ "plugins": ["@typescript-eslint"]
7
+ }
@@ -0,0 +1,10 @@
1
+ .zuplo/
2
+ .cache/
3
+ dist/
4
+ node_modules/
5
+ .env
6
+ .env.zuplo
7
+ .husky/_
8
+
9
+ # OS Stuff
10
+ .DS_Store
@@ -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
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": 1,
3
+ "compatibilityDate": "2024-09-02",
4
+ }
package/package.json CHANGED
@@ -1,63 +1,53 @@
1
1
  {
2
2
  "name": "create-zuplo-api",
3
- "version": "2.3.0",
4
- "type": "module",
5
- "repository": "https://github.com/zuplo/create-zuplo-api",
6
- "description": "The official way to create a new Zuplo API Gateway",
7
- "author": "Zuplo, Inc.",
8
- "license": "See LICENSE in LICENSE.txt",
9
- "main": "./dist/index.js",
10
- "types": "dist/src/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
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
- "engines": {
24
- "node": ">=18.0.0"
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
- "bin": {
30
- "create-zuplo-api": "create-zuplo-api.js"
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
- "@inquirer/prompts": "^3.1.2",
42
- "@sentry/cli": "^2.21.1",
43
- "@sentry/node": "^7.72.0",
44
- "@types/node": "^18.5.3",
45
- "@types/semver": "^7.5.3",
46
- "@typescript-eslint/eslint-plugin": "^6.7.3",
47
- "@typescript-eslint/parser": "^6.7.3",
48
- "@vercel/ncc": "^0.38.1",
49
- "chalk": "^5.3.0",
50
- "dotenv": "^16.3.1",
51
- "eslint": "^8.50.0",
52
- "eslint-config-prettier": "^9.0.0",
53
- "eslint-plugin-import": "^2.28.1",
54
- "eslint-plugin-node": "^11.1.0",
55
- "eslint-plugin-unicorn": "^48.0.1",
56
- "husky": "^8.0.3",
57
- "lint-staged": "^14.0.1",
58
- "posthog-node": "^4.0.1",
59
- "prettier-plugin-organize-imports": "^3.2.3",
60
- "semver": "^7.6.2",
61
- "typescript": "^5.2.2"
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.
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env node
2
- /* eslint-disable */
3
- process.removeAllListeners("warning");
4
- import { exec } from "./dist/index.js";
5
-
6
- await exec();
@@ -1 +0,0 @@
1
- module.exports = eval("require")("../../");
package/dist/package.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "type": "module"
3
- }
package/dist/src/cli.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export declare function exec(): Promise<void>;
2
- //# sourceMappingURL=cli.d.ts.map
@@ -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,2 +0,0 @@
1
- export declare function machineId(): string;
2
- //# 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/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,6 +0,0 @@
1
- export declare function createApi({ rootDirectory, name, template, }: {
2
- rootDirectory: string;
3
- name: string;
4
- template: string;
5
- }): Promise<void>;
6
- //# sourceMappingURL=create.d.ts.map
@@ -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,2 +0,0 @@
1
- export declare function create(): Promise<void>;
2
- //# sourceMappingURL=handler.d.ts.map
@@ -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"}
@@ -1,3 +0,0 @@
1
- export { exec } from "./cli.js";
2
- export { createApi } from "./create/create.js";
3
- //# sourceMappingURL=index.d.ts.map
@@ -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"}
@@ -1,2 +0,0 @@
1
- export declare function getTemplateDir(template: string): string;
2
- //# sourceMappingURL=utils.d.ts.map
@@ -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
- };