disable wip snippets
This commit is contained in:
parent
f0a67a5d84
commit
4e76cf3d5c
62
README.md
62
README.md
@ -1,60 +1,18 @@
|
|||||||
# Snippeteer
|
# @sapphirecode/snippeteer
|
||||||
|
|
||||||
|
[![Package quality](https://packagequality.com/shield/@sapphirecode/snippeteer.svg)](https://packagequality.com/#?package=@sapphirecode/snippeteer)
|
||||||
|
|
||||||
|
> macros for setting up projects or project parts
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
to work with the @scode scope you have to add the following line to your npmrc.
|
> npm i -g @sapphirecode/snippeteer
|
||||||
for this particular one you'll have to add it to the global npmrc stored in your home folder (~/.npmrc)
|
|
||||||
|
|
||||||
```npmrc
|
|
||||||
@scode:registry=https://npm.scode.ovh
|
|
||||||
```
|
|
||||||
|
|
||||||
then install the module using the following command
|
|
||||||
|
|
||||||
```sh
|
|
||||||
npm i -g @scode/snippeteer
|
|
||||||
```
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```sh
|
run `snippeteer` in console and choose a snippet, all necessary parameters will
|
||||||
snippeteer [snippet] [..args]
|
be asked interactively
|
||||||
```
|
|
||||||
|
|
||||||
All snippets will be executed relative to your current working directory!
|
## License
|
||||||
|
|
||||||
## Snippets
|
BSD-3-Clause © Timo Hocker <timo@scode.ovh>
|
||||||
|
|
||||||
### Snippet
|
|
||||||
|
|
||||||
Creates a new snippet template
|
|
||||||
|
|
||||||
```sh
|
|
||||||
snippeteer snippet [name]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Node
|
|
||||||
|
|
||||||
Creates a new nodejs project
|
|
||||||
|
|
||||||
```sh
|
|
||||||
snippeteer node [name]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Jenkins
|
|
||||||
|
|
||||||
Adds files necessary for jenkins
|
|
||||||
|
|
||||||
optionally with a js script for npm modules by adding 'node' as argument
|
|
||||||
|
|
||||||
```sh
|
|
||||||
snippeteer jenkins [node]
|
|
||||||
```
|
|
||||||
|
|
||||||
### Vue
|
|
||||||
|
|
||||||
Adds files, dependencies and scripts for vue to a nodejs project
|
|
||||||
|
|
||||||
```sh
|
|
||||||
snippeteer vue
|
|
||||||
```
|
|
||||||
|
@ -6,5 +6,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
export interface Snippet {
|
export interface Snippet {
|
||||||
|
is_active(): boolean;
|
||||||
start(cwd: string): Promise<void>;
|
start(cwd: string): Promise<void>;
|
||||||
}
|
}
|
||||||
|
21
lib/index.ts
21
lib/index.ts
@ -12,17 +12,22 @@ import { Snippet } from './Snippet';
|
|||||||
|
|
||||||
(async (): Promise<void> => {
|
(async (): Promise<void> => {
|
||||||
const snippets = await fs.readdir (path.join (__dirname, 'snippets'));
|
const snippets = await fs.readdir (path.join (__dirname, 'snippets'));
|
||||||
const snippet = await new AutoComplete (
|
const runners: Record<string, Snippet> = {};
|
||||||
{
|
await Promise.all (
|
||||||
|
snippets.map (async (s) => {
|
||||||
|
const runner = (new (
|
||||||
|
await import (`./snippets/${s}/index.js`)
|
||||||
|
).default) as Snippet;
|
||||||
|
runners[s] = runner;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
const snippet = await new AutoComplete ({
|
||||||
name: 'snippet',
|
name: 'snippet',
|
||||||
message: 'choose a snippet',
|
message: 'choose a snippet',
|
||||||
choices: snippets
|
choices: snippets.filter ((s) => runners[s].is_active ())
|
||||||
}
|
})
|
||||||
)
|
|
||||||
.run ();
|
.run ();
|
||||||
const runner
|
runners[snippet].start (process.cwd ());
|
||||||
= new (await import (`./snippets/${snippet}/index.js`)).default as Snippet;
|
|
||||||
runner.start (process.cwd ());
|
|
||||||
}) ()
|
}) ()
|
||||||
// eslint-disable-next-line no-console
|
// eslint-disable-next-line no-console
|
||||||
.catch ((e) => console.log (e));
|
.catch ((e) => console.log (e));
|
||||||
|
@ -19,6 +19,10 @@ import { FileMapper } from './file_mapper';
|
|||||||
import { CopyrightOptions } from './copyright_options';
|
import { CopyrightOptions } from './copyright_options';
|
||||||
|
|
||||||
export default class Copyright implements Snippet {
|
export default class Copyright implements Snippet {
|
||||||
|
public is_active (): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
private _options: CopyrightOptions | null = null;
|
private _options: CopyrightOptions | null = null;
|
||||||
private _cwd = '';
|
private _cwd = '';
|
||||||
private _loaded_from_config = false;
|
private _loaded_from_config = false;
|
||||||
|
@ -8,7 +8,11 @@
|
|||||||
import { Snippet } from '../../Snippet';
|
import { Snippet } from '../../Snippet';
|
||||||
|
|
||||||
export default class Database implements Snippet {
|
export default class Database implements Snippet {
|
||||||
|
public is_active (): boolean {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public start (): Promise<void> {
|
public start (): Promise<void> {
|
||||||
return new Promise ((res) => res ());
|
return Promise.resolve ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,10 @@ import { apply_template, modify_json } from '../../Helper';
|
|||||||
import { general, node } from './Assets';
|
import { general, node } from './Assets';
|
||||||
|
|
||||||
export default class Jenkins implements Snippet {
|
export default class Jenkins implements Snippet {
|
||||||
|
public is_active (): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public async start (): Promise<void> {
|
public async start (): Promise<void> {
|
||||||
const is_node = await new Confirm ({
|
const is_node = await new Confirm ({
|
||||||
message: 'is the current project using nodejs?',
|
message: 'is the current project using nodejs?',
|
||||||
|
@ -56,6 +56,10 @@ async function init_package (
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default class Node implements Snippet {
|
export default class Node implements Snippet {
|
||||||
|
public is_active (): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public async start (): Promise<void> {
|
public async start (): Promise<void> {
|
||||||
const folder = await new Input (
|
const folder = await new Input (
|
||||||
{ message: 'project name (leave empty for current folder):' }
|
{ message: 'project name (leave empty for current folder):' }
|
||||||
|
@ -4,6 +4,10 @@ import { modify_json, apply_template } from '../../Helper';
|
|||||||
import { get_readme } from './Assets';
|
import { get_readme } from './Assets';
|
||||||
|
|
||||||
export default class Readme implements Snippet {
|
export default class Readme implements Snippet {
|
||||||
|
public is_active (): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
public async start (): Promise<void> {
|
public async start (): Promise<void> {
|
||||||
const dev = await new Confirm ({
|
const dev = await new Confirm ({
|
||||||
message: 'is the package used as dev dependency?',
|
message: 'is the package used as dev dependency?',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user