@tuyau/core 0.1.2 → 0.1.4
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/README.md +1 -114
- package/build/commands/generate.js +36 -8
- package/build/src/hooks/build_hook.d.ts +5 -0
- package/build/src/hooks/build_hook.js +15 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -1,115 +1,2 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @tuyau/core
|
|
2
2
|
|
|
3
|
-
> A boilerplate for creating AdonisJS packages
|
|
4
|
-
|
|
5
|
-
This repo provides you with a starting point for creating AdonisJS packages. Of course, you can create a package from scratch with your folder structure and workflow. However, using this starter kit can speed up the process, as you have fewer decisions to make.
|
|
6
|
-
|
|
7
|
-
## Setup
|
|
8
|
-
|
|
9
|
-
- Clone the repo on your computer, or use `giget` to download this repo without the Git history.
|
|
10
|
-
```sh
|
|
11
|
-
npx giget@latest gh:adonisjs/pkg-starter-kit
|
|
12
|
-
```
|
|
13
|
-
- Install dependencies.
|
|
14
|
-
- Update the `package.json` file and define the `name`, `description`, `keywords`, and `author` properties.
|
|
15
|
-
- The repo is configured with an MIT license. Feel free to change that if you are not publishing under the MIT license.
|
|
16
|
-
|
|
17
|
-
## Folder structure
|
|
18
|
-
|
|
19
|
-
The starter kit mimics the folder structure of the official packages. Feel free to rename files and folders as per your requirements.
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
├── providers
|
|
23
|
-
├── src
|
|
24
|
-
├── bin
|
|
25
|
-
├── stubs
|
|
26
|
-
├── configure.ts
|
|
27
|
-
├── index.ts
|
|
28
|
-
├── LICENSE.md
|
|
29
|
-
├── package.json
|
|
30
|
-
├── README.md
|
|
31
|
-
├── tsconfig.json
|
|
32
|
-
├── tsnode.esm.js
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
- The `configure.ts` file exports the `configure` hook to configure the package using the `node ace configure` command.
|
|
36
|
-
- The `index.ts` file is the main entry point of the package.
|
|
37
|
-
- The `tsnode.esm.js` file runs TypeScript code using TS-Node + SWC. Please read the code comment in this file to learn more.
|
|
38
|
-
- The `bin` directory contains the entry point file to run Japa tests.
|
|
39
|
-
- Learn more about [the `providers` directory](./providers/README.md).
|
|
40
|
-
- Learn more about [the `src` directory](./src/README.md).
|
|
41
|
-
- Learn more about [the `stubs` directory](./stubs/README.md).
|
|
42
|
-
|
|
43
|
-
### File system naming convention
|
|
44
|
-
|
|
45
|
-
We use `snake_case` naming conventions for the file system. The rule is enforced using ESLint. However, turn off the rule and use your preferred naming conventions.
|
|
46
|
-
|
|
47
|
-
## Peer dependencies
|
|
48
|
-
|
|
49
|
-
The starter kit has a peer dependency on `@adonisjs/core@6`. Since you are creating a package for AdonisJS, you must make it against a specific version of the framework core.
|
|
50
|
-
|
|
51
|
-
If your package needs Lucid to be functional, you may install `@adonisjs/lucid` as a development dependency and add it to the list of `peerDependencies`.
|
|
52
|
-
|
|
53
|
-
As a rule of thumb, packages installed in the user application should be part of the `peerDependencies` of your package and not the main dependency.
|
|
54
|
-
|
|
55
|
-
For example, if you install `@adonisjs/core` as a main dependency, then essentially, you are importing a separate copy of `@adonisjs/core` and not sharing the one from the user application. Here is a great article explaining [peer dependencies](https://blog.bitsrc.io/understanding-peer-dependencies-in-javascript-dbdb4ab5a7be).
|
|
56
|
-
|
|
57
|
-
## Published files
|
|
58
|
-
|
|
59
|
-
Instead of publishing your repo's source code to npm, you must cherry-pick files and folders to publish only the required files.
|
|
60
|
-
|
|
61
|
-
The cherry-picking uses the `files` property inside the `package.json` file. By default, we publish the following files and folders.
|
|
62
|
-
|
|
63
|
-
```json
|
|
64
|
-
{
|
|
65
|
-
"files": ["build/src", "build/providers", "build/stubs", "build/index.d.ts", "build/index.js"]
|
|
66
|
-
}
|
|
67
|
-
```
|
|
68
|
-
|
|
69
|
-
If you create additional folders or files, mention them inside the `files` array.
|
|
70
|
-
|
|
71
|
-
## Exports
|
|
72
|
-
|
|
73
|
-
[Node.js Subpath exports](https://nodejs.org/api/packages.html#subpath-exports) allows you to define the exports of your package regardless of the folder structure. This starter kit defines the following exports.
|
|
74
|
-
|
|
75
|
-
```json
|
|
76
|
-
{
|
|
77
|
-
"exports": {
|
|
78
|
-
".": "./build/index.js",
|
|
79
|
-
"./types": "./build/src/types.js"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
- The dot `.` export is the main export.
|
|
85
|
-
- The `./types` exports all the types defined inside the `./build/src/types.js` file (the compiled output).
|
|
86
|
-
|
|
87
|
-
Feel free to change the exports as per your requirements.
|
|
88
|
-
|
|
89
|
-
## Testing
|
|
90
|
-
|
|
91
|
-
We configure the [Japa test runner](https://japa.dev/) with this starter kit. Japa is used in AdonisJS applications as well. Just run one of the following commands to execute tests.
|
|
92
|
-
|
|
93
|
-
- `npm run test`: This command will first lint the code using ESlint and then run tests and report the test coverage using [c8](https://github.com/bcoe/c8).
|
|
94
|
-
- `npm run quick:test`: Runs only the tests without linting or coverage reporting.
|
|
95
|
-
|
|
96
|
-
The starter kit also has a Github workflow file to run tests using Github Actions. The tests are executed against `Node.js 20.x` and `Node.js 21.x` versions on both Linux and Windows. Feel free to edit the workflow file in the `.github/workflows` directory.
|
|
97
|
-
|
|
98
|
-
## TypeScript workflow
|
|
99
|
-
|
|
100
|
-
- The starter kit uses [tsc](https://www.typescriptlang.org/docs/handbook/compiler-options.html) for compiling the TypeScript to JavaScript when publishing the package.
|
|
101
|
-
- [TS-Node](https://typestrong.org/ts-node/) and [SWC](https://swc.rs/) are used to run tests without compiling the source code.
|
|
102
|
-
- The `tsconfig.json` file is extended from [`@adonisjs/tsconfig`](https://github.com/adonisjs/tooling-config/tree/main/packages/typescript-config) and uses the `NodeNext` module system. Meaning the packages are written using ES modules.
|
|
103
|
-
- You can perform type checking without compiling the source code using the `npm run type check` script.
|
|
104
|
-
|
|
105
|
-
Feel free to explore the `tsconfig.json` file for all the configured options.
|
|
106
|
-
|
|
107
|
-
## ESLint and Prettier setup
|
|
108
|
-
|
|
109
|
-
The starter kit configures ESLint and Prettier. Both configurations are stored within the `package.json` file and use our [shared config](https://github.com/adonisjs/tooling-config/tree/main/packages). Feel free to change the configuration, use custom plugins, or remove both tools altogether.
|
|
110
|
-
|
|
111
|
-
## Using Stale bot
|
|
112
|
-
|
|
113
|
-
The [Stale bot](https://github.com/apps/stale) is a Github application that automatically marks issues and PRs as stale and closes after a specific duration of inactivity.
|
|
114
|
-
|
|
115
|
-
Feel free to delete the `.github/stale.yml` and `.github/lock.yml` files if you decide not to use the Stale bot.
|
|
@@ -14,7 +14,7 @@ import { fileURLToPath } from "node:url";
|
|
|
14
14
|
import { dirname, relative } from "node:path";
|
|
15
15
|
import { existsSync, mkdirSync } from "node:fs";
|
|
16
16
|
import string from "@adonisjs/core/helpers/string";
|
|
17
|
-
import { parseBindingReference } from "@adonisjs/core/helpers";
|
|
17
|
+
import { parseBindingReference, slash } from "@adonisjs/core/helpers";
|
|
18
18
|
var ApiTypesGenerator = class {
|
|
19
19
|
#appRoot;
|
|
20
20
|
#logger;
|
|
@@ -56,7 +56,33 @@ var ApiTypesGenerator = class {
|
|
|
56
56
|
const body = method.getBody();
|
|
57
57
|
if (!body)
|
|
58
58
|
return;
|
|
59
|
-
return { method, body };
|
|
59
|
+
return { method, body, file };
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Get the import type of an identifier
|
|
63
|
+
*/
|
|
64
|
+
#getIdentifierImportType(identifier) {
|
|
65
|
+
const sourceFile = identifier.getSourceFile();
|
|
66
|
+
const namedImport = sourceFile.getImportDeclaration((importNode) => {
|
|
67
|
+
const namedImports = importNode.getNamedImports();
|
|
68
|
+
if (namedImports.find((namedImport2) => namedImport2.getName() === identifier.getText())) {
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
return false;
|
|
72
|
+
});
|
|
73
|
+
const defaultImport = sourceFile.getImportDeclaration((importNode) => {
|
|
74
|
+
if (importNode.getDefaultImport()?.getText() === identifier.getText())
|
|
75
|
+
return true;
|
|
76
|
+
return false;
|
|
77
|
+
});
|
|
78
|
+
const isValidFile = (namedImport || defaultImport)?.getModuleSpecifierSourceFile();
|
|
79
|
+
if (!isValidFile)
|
|
80
|
+
return void 0;
|
|
81
|
+
if (namedImport)
|
|
82
|
+
return "named";
|
|
83
|
+
if (defaultImport)
|
|
84
|
+
return "default";
|
|
85
|
+
return void 0;
|
|
60
86
|
}
|
|
61
87
|
/**
|
|
62
88
|
* We have multiple ways to get the request payload :
|
|
@@ -79,14 +105,16 @@ var ApiTypesGenerator = class {
|
|
|
79
105
|
const schema = validateUsingCallNode.getArguments()[0];
|
|
80
106
|
if (!Node.isIdentifier(schema))
|
|
81
107
|
return;
|
|
82
|
-
const
|
|
83
|
-
|
|
108
|
+
const definition = schema.getDefinitions().at(0);
|
|
109
|
+
const importType = this.#getIdentifierImportType(schema);
|
|
110
|
+
if (!definition || !importType) {
|
|
84
111
|
this.#logger.warning(`Unable to find the schema file for ${schema.getText()}`);
|
|
85
112
|
return;
|
|
86
113
|
}
|
|
87
|
-
const importPath =
|
|
88
|
-
const relativeImportPath = relative(this.#getDestinationDirectory(), importPath);
|
|
89
|
-
|
|
114
|
+
const importPath = definition.getSourceFile().getFilePath();
|
|
115
|
+
const relativeImportPath = slash(relative(this.#getDestinationDirectory(), importPath));
|
|
116
|
+
const propName = importType === "default" ? "default" : schema.getText();
|
|
117
|
+
return `InferInput<typeof import('${relativeImportPath}')['${propName}']>`;
|
|
90
118
|
}
|
|
91
119
|
return void 0;
|
|
92
120
|
}
|
|
@@ -219,7 +247,7 @@ var ApiTypesGenerator = class {
|
|
|
219
247
|
const methods = route.methods.map((method) => "$" + method.toLowerCase()).filter((method) => method !== "head");
|
|
220
248
|
const segments = route.pattern.split("/").filter(Boolean);
|
|
221
249
|
let currentLevel = definition;
|
|
222
|
-
const relativePath = relative(this.#getDestinationDirectory(), file.getFilePath());
|
|
250
|
+
const relativePath = slash(relative(this.#getDestinationDirectory(), file.getFilePath()));
|
|
223
251
|
segments.forEach((segment, i) => {
|
|
224
252
|
if (!currentLevel[segment])
|
|
225
253
|
currentLevel[segment] = {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import "../../chunk-3KNDPG6Y.js";
|
|
2
|
+
|
|
3
|
+
// src/hooks/build_hook.ts
|
|
4
|
+
import util from "node:util";
|
|
5
|
+
import { exec as cpExec } from "node:child_process";
|
|
6
|
+
var exec = util.promisify(cpExec);
|
|
7
|
+
async function tuyauBuildHook({ logger }) {
|
|
8
|
+
logger.info("generating tuyau codegen file", { suffix: "tuyau" });
|
|
9
|
+
const { stderr } = await exec("node ace tuyau:generate");
|
|
10
|
+
if (stderr)
|
|
11
|
+
throw new Error(stderr);
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
tuyauBuildHook as default
|
|
15
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuyau/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"description": "",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
".": "./build/index.js",
|
|
11
11
|
"./types": "./build/src/types.js",
|
|
12
12
|
"./commands": "./build/commands/main.js",
|
|
13
|
-
"./tuyau_provider": "./build/providers/tuyau_provider.js"
|
|
13
|
+
"./tuyau_provider": "./build/providers/tuyau_provider.js",
|
|
14
|
+
"./build_hook": "./build/src/hooks/build_hook.js"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"build"
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"@poppinss/cliui": "^6.4.1",
|
|
32
33
|
"@poppinss/matchit": "^3.1.2",
|
|
33
34
|
"@types/node": "^20.12.7",
|
|
34
|
-
"@tuyau/client": "0.1.
|
|
35
|
+
"@tuyau/client": "0.1.2",
|
|
35
36
|
"@tuyau/utils": "0.0.4"
|
|
36
37
|
},
|
|
37
38
|
"publishConfig": {
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"entry": [
|
|
52
53
|
"./index.ts",
|
|
53
54
|
"./src/types.ts",
|
|
55
|
+
"./src/hooks/build_hook.ts",
|
|
54
56
|
"./commands/generate.ts",
|
|
55
57
|
"./providers/tuyau_provider.ts"
|
|
56
58
|
],
|