@xcelera/cli 0.0.1
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/.devcontainer/devcontainer.json +41 -0
- package/.env.example +61 -0
- package/.gitattributes +3 -0
- package/.github/dependabot.yml +30 -0
- package/.github/workflows/check-dist.yml +72 -0
- package/.github/workflows/ci.yml +65 -0
- package/.github/workflows/codeql-analysis.yml +48 -0
- package/.github/workflows/licensed.yml +74 -0
- package/.github/workflows/linter.yml +53 -0
- package/.licensed.yml +18 -0
- package/.licenses/npm/@actions/core.dep.yml +20 -0
- package/.licenses/npm/@actions/exec.dep.yml +20 -0
- package/.licenses/npm/@actions/http-client.dep.yml +32 -0
- package/.licenses/npm/@actions/io.dep.yml +20 -0
- package/.licenses/npm/@fastify/busboy.dep.yml +30 -0
- package/.licenses/npm/tunnel.dep.yml +35 -0
- package/.licenses/npm/undici.dep.yml +34 -0
- package/.markdown-lint.yml +24 -0
- package/.node-version +1 -0
- package/.nvmrc +1 -0
- package/.prettierignore +5 -0
- package/.prettierrc.yml +16 -0
- package/.vscode/launch.json +15 -0
- package/.yaml-lint.yml +14 -0
- package/CODEOWNERS +7 -0
- package/LICENSE +21 -0
- package/README.md +30 -0
- package/action.yml +29 -0
- package/badges/coverage.svg +1 -0
- package/dist/action.js +31290 -0
- package/dist/action.js.map +1 -0
- package/dist/cli.js +95 -0
- package/eslint.config.mjs +81 -0
- package/jest.config.js +40 -0
- package/package.json +76 -0
- package/rollup.config.ts +30 -0
- package/script/release +133 -0
- package/src/action.ts +35 -0
- package/src/api.ts +46 -0
- package/src/cli.ts +84 -0
- package/src/git.ts +66 -0
- package/src/types/git.ts +5 -0
- package/src/types/parse-github-url.d.ts +12 -0
- package/tsconfig.base.json +23 -0
- package/tsconfig.eslint.json +17 -0
- package/tsconfig.json +11 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"allowSyntheticDefaultImports": true,
|
|
5
|
+
"declaration": false,
|
|
6
|
+
"declarationMap": false,
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"forceConsistentCasingInFileNames": true,
|
|
9
|
+
"isolatedModules": true,
|
|
10
|
+
"lib": ["ES2022"],
|
|
11
|
+
"module": "NodeNext",
|
|
12
|
+
"moduleResolution": "NodeNext",
|
|
13
|
+
"newLine": "lf",
|
|
14
|
+
"noImplicitAny": true,
|
|
15
|
+
"noUnusedLocals": true,
|
|
16
|
+
"noUnusedParameters": false,
|
|
17
|
+
"pretty": true,
|
|
18
|
+
"resolveJsonModule": true,
|
|
19
|
+
"strict": true,
|
|
20
|
+
"strictNullChecks": true,
|
|
21
|
+
"target": "ES2022"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"extends": "./tsconfig.base.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"allowJs": true,
|
|
6
|
+
"noEmit": true
|
|
7
|
+
},
|
|
8
|
+
"exclude": ["dist", "node_modules"],
|
|
9
|
+
"include": [
|
|
10
|
+
"__fixtures__",
|
|
11
|
+
"__tests__",
|
|
12
|
+
"src",
|
|
13
|
+
"eslint.config.mjs",
|
|
14
|
+
"jest.config.js",
|
|
15
|
+
"rollup.config.ts"
|
|
16
|
+
]
|
|
17
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"extends": "./tsconfig.base.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"module": "NodeNext",
|
|
6
|
+
"moduleResolution": "NodeNext",
|
|
7
|
+
"outDir": "./dist"
|
|
8
|
+
},
|
|
9
|
+
"exclude": ["__fixtures__", "__tests__", "coverage", "dist", "node_modules"],
|
|
10
|
+
"include": ["src"]
|
|
11
|
+
}
|