clean up and fix descriptions
Signed-off-by: Juan Pablo Garcia Ripa <juanpablog@spotify.com>
This commit is contained in:
@@ -10,7 +10,6 @@
|
||||
"start-backend": "yarn workspace example-backend start",
|
||||
"build:backend": "yarn workspace backend build",
|
||||
"build:all": "backstage-cli repo build --all",
|
||||
"build": "backstage-cli repo build --all",
|
||||
"build:api-reports": "yarn build:api-reports:only --tsc",
|
||||
"build:api-reports:only": "backstage-repo-tools api-reports",
|
||||
"build:api-docs": "LANG=en_EN yarn build:api-reports --docs",
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname, {
|
||||
ignorePatterns: ['templates/**'],
|
||||
rules: {
|
||||
'no-console': 0,
|
||||
},
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
# @backstage/repo-tools
|
||||
|
||||
This package provides a CLI for backstage repo tooling.
|
||||
|
||||
## Installation
|
||||
|
||||
Install the package via Yarn:
|
||||
|
||||
```sh
|
||||
yarn add @backstage/repo-tools
|
||||
```
|
||||
|
||||
Regular → Executable
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@backstage/repo-tools",
|
||||
"description": "",
|
||||
"description": "CLI for Backstage repo tooling ",
|
||||
"version": "0.0.0",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -41,9 +41,6 @@
|
||||
"ts-node": "^10.0.0"
|
||||
},
|
||||
"files": [
|
||||
"asset-types",
|
||||
"templates",
|
||||
"config",
|
||||
"bin",
|
||||
"dist/**/*.js"
|
||||
],
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
import { OptionValues } from 'commander';
|
||||
import {resolve as resolvePath} from 'path';
|
||||
import { resolve as resolvePath } from 'path';
|
||||
import fs from 'fs-extra';
|
||||
import { spawnSync } from 'child_process';
|
||||
import {
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* CLI for developing Backstage plugins and apps
|
||||
* CLI for Backstage repo tooling
|
||||
*
|
||||
* @packageDocumentation
|
||||
*/
|
||||
@@ -23,7 +23,6 @@
|
||||
import { program } from 'commander';
|
||||
import chalk from 'chalk';
|
||||
import { exitWithError } from './lib/errors';
|
||||
// import { version } from './lib/version';
|
||||
import { registerCommands } from './commands';
|
||||
|
||||
const main = (argv: string[]) => {
|
||||
|
||||
Reference in New Issue
Block a user