Skip to content

Commit e4fd928

Browse files
committed
VTEX Plugin template
1 parent 30a47ab commit e4fd928

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2412
-4350
lines changed

.eslintcache

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"/home/thiago/Documents/Git/cli-plugin-test/src/commands/test/e2e.ts":"1","/home/thiago/Documents/Git/cli-plugin-test/src/commands/test/unit.ts":"2","/home/thiago/Documents/Git/cli-plugin-test/src/index.ts":"3","/home/thiago/Documents/Git/cli-plugin-test/src/modules/e2e/report/specsState.ts":"4","/home/thiago/Documents/Git/cli-plugin-test/src/modules/e2e/testCommand.ts":"5"},{"size":993,"mtime":1593455982763,"results":"6","hashOfConfig":"7"},{"size":625,"mtime":1593457747113,"results":"8","hashOfConfig":"7"},{"size":18,"mtime":1593455279310,"results":"9","hashOfConfig":"7"},{"size":1087,"mtime":1593532997977,"results":"10","hashOfConfig":"7"},{"size":4431,"mtime":1593532997977,"results":"11","hashOfConfig":"7"},{"filePath":"12","messages":"13","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1ta92dg",{"filePath":"14","messages":"15","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"16","messages":"17","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"18","messages":"19","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"20","messages":"21","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/thiago/Documents/Git/cli-plugin-test/src/commands/test/e2e.ts",[],"/home/thiago/Documents/Git/cli-plugin-test/src/commands/test/unit.ts",[],"/home/thiago/Documents/Git/cli-plugin-test/src/index.ts",[],"/home/thiago/Documents/Git/cli-plugin-test/src/modules/e2e/report/specsState.ts",[],"/home/thiago/Documents/Git/cli-plugin-test/src/modules/e2e/testCommand.ts",[]]
1+
[{"/home/thiago/Documents/Git/vtex/cli-plugin-test/src/commands/hello.ts":"1","/home/thiago/Documents/Git/vtex/cli-plugin-test/src/index.ts":"2"},{"size":869,"mtime":1593707291576,"results":"3","hashOfConfig":"4"},{"size":18,"mtime":1593707291596,"results":"5","hashOfConfig":"4"},{"filePath":"6","messages":"7","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"ix8wi6",{"filePath":"8","messages":"9","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/thiago/Documents/Git/vtex/cli-plugin-test/src/commands/hello.ts",[],"/home/thiago/Documents/Git/vtex/cli-plugin-test/src/index.ts",[]]

.eslintignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
**/__mocks__
1+
/build
22
**/*.test.ts
3-
/src/__tests__
3+
/src/__tests__
4+
**/__mocks__

.eslintrc

+7-27
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,23 @@
77
"jest": true
88
},
99
"rules": {
10-
"no-console": "off",
11-
"import/order": "off",
12-
"@typescript-eslint/no-explicit-any": "off",
10+
"@typescript-eslint/ban-ts-ignore": "warn",
1311
"@typescript-eslint/explicit-member-accessibility": "off",
12+
"@typescript-eslint/interface-name-prefix": "off",
13+
"@typescript-eslint/no-explicit-any": "off",
14+
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "_+" }],
1415
"default-case": "off",
1516
"global-require": "off",
16-
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "_+" }],
17-
"@typescript-eslint/interface-name-prefix": "off",
18-
"@typescript-eslint/ban-ts-ignore": "warn"
17+
"import/order": "off",
18+
"no-console": "off",
19+
"no-shadow": "off"
1920
},
2021
"overrides": [
2122
{
2223
"files": ["*.ts"],
2324
"rules": {
2425
"no-dupe-class-members": "off"
2526
}
26-
},
27-
{
28-
"files": ["./src/logger.ts"],
29-
"rules": {
30-
"@typescript-eslint/ban-ts-ignore": "off"
31-
}
32-
},
33-
{
34-
"files": ["./src/oclif/CustomCommand.ts"],
35-
"rules": {
36-
"@typescript-eslint/no-var-requires": "warn"
37-
}
38-
},
39-
{
40-
"files": [
41-
"./src/lib/telemetry/TelemetryReporter/report.ts",
42-
"./src/CLIPreTasks/OutdatedChecker/checkForOutdated.ts"
43-
],
44-
"rules": {
45-
"import/first": "off"
46-
}
4727
}
4828
]
4929
}

.eslintrc-react

-11
This file was deleted.

.github/ISSUE_TEMPLATE

-32
This file was deleted.

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
node-version: 12
1818
- run: yarn install --ignore-scripts
1919
- run: yarn run ci:prettier-check
20-
- run: yarn run lint:node
20+
- run: yarn run lint
2121

2222
test:
2323
needs: [lint]

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -1 +1,14 @@
1+
.DS_Store
2+
.eslintcache
3+
.vscode
4+
*-debug.log
5+
*-error.log
6+
/.nyc_output
7+
/build
8+
/dist
9+
/tmp
10+
coverage
111
node_modules
12+
yarn.lock
13+
oclif.manifest.json
14+
tsconfig.tsbuildinfo

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

.prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"semi": false,
33
"singleQuote": true,
44
"trailingComma": "es5",
5-
"printWidth": 120
5+
"printWidth": 120,
6+
"endOfLine": "auto"
67
}

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
@thiagoveras/cli-plugin-test
2-
============================
3-
1+
cli-plugin-template
2+
===================
43

4+
vtex plugin template
55

66
[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
7-
[![Version](https://img.shields.io/npm/v/@thiagoveras/cli-plugin-test.svg)](https://npmjs.org/package/@thiagoveras/cli-plugin-test)
8-
[![Downloads/week](https://img.shields.io/npm/dw/@thiagoveras/cli-plugin-test.svg)](https://npmjs.org/package/@thiagoveras/cli-plugin-test)
9-
[![License](https://img.shields.io/npm/l/@thiagoveras/cli-plugin-test.svg)](https://github.com/VerasThiago/cli-plugin-test/blob/master/package.json)
7+
[![Version](https://img.shields.io/npm/v/cli-plugin-template.svg)](https://npmjs.org/package/cli-plugin-template)
8+
[![Downloads/week](https://img.shields.io/npm/dw/cli-plugin-template.svg)](https://npmjs.org/package/cli-plugin-template)
9+
[![License](https://img.shields.io/npm/l/cli-plugin-template.svg)](https://github.com/vtex/cli-plugin-template/blob/master/package.json)
1010

1111
<!-- toc -->
1212
* [Usage](#usage)
@@ -15,11 +15,11 @@
1515
# Usage
1616
<!-- usage -->
1717
```sh-session
18-
$ npm install -g @thiagoveras/cli-plugin-test
18+
$ npm install -g cli-plugin-template
1919
$ oclif-example COMMAND
2020
running command...
2121
$ oclif-example (-v|--version|version)
22-
@thiagoveras/cli-plugin-test/0.0.0 linux-x64 node-v14.0.0
22+
cli-plugin-template/0.0.0 linux-x64 node-v14.0.0
2323
$ oclif-example --help [COMMAND]
2424
USAGE
2525
$ oclif-example COMMAND
@@ -48,5 +48,5 @@ EXAMPLE
4848
hello world from ./src/hello.ts!
4949
```
5050

51-
_See code: [src/commands/hello.ts](https://github.com/VerasThiago/cli-plugin-test/blob/v0.0.0/src/commands/hello.ts)_
51+
_See code: [build/commands/hello.ts](https://github.com/vtex/cli-plugin-template/blob/v0.0.0/build/commands/hello.ts)_
5252
<!-- commandsstop -->

build/commands/test/e2e.d.ts

-16
This file was deleted.

build/commands/test/e2e.js

-29
This file was deleted.

build/commands/test/unit.d.ts

-14
This file was deleted.

build/commands/test/unit.js

-21
This file was deleted.

build/modules/e2e/index.d.ts

-2
This file was deleted.

build/modules/e2e/index.js

-59
This file was deleted.

build/modules/e2e/report/appId.d.ts

-6
This file was deleted.

build/modules/e2e/report/appId.js

-16
This file was deleted.

build/modules/e2e/report/completedApps.d.ts

-3
This file was deleted.

build/modules/e2e/report/completedApps.js

-29
This file was deleted.

build/modules/e2e/report/failedApps.d.ts

-9
This file was deleted.

0 commit comments

Comments
 (0)