Add CLI config, bin scripts, CI workflow and types
This commit is contained in:
21
oclif.config.js
Normal file
21
oclif.config.js
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
const oclifConfig = {
|
||||||
|
name: 'testspec',
|
||||||
|
version: '1.0.0',
|
||||||
|
description: 'Convert natural language requirements into structured unit test cases',
|
||||||
|
author: 'TestSpec CLI Team',
|
||||||
|
bin: 'testspec',
|
||||||
|
commands: './dist/commands',
|
||||||
|
plugins: ['@oclif/plugin-help'],
|
||||||
|
topics: {
|
||||||
|
commands: {
|
||||||
|
description: 'Commands for generating and managing test cases'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
oclif: {
|
||||||
|
bin: 'testspec',
|
||||||
|
dirname: 'testspec',
|
||||||
|
commands: './dist/commands'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export default oclifConfig;
|
||||||
Reference in New Issue
Block a user