mirror of
https://github.com/Pagwin-Fedora/ppi.git
synced 2025-07-17 22:15:42 +00:00
scripts and config.toml placed in repo for convenience
This commit is contained in:
parent
002e5f3316
commit
2235393890
3 changed files with 14 additions and 0 deletions
5
config.toml
Normal file
5
config.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
[subcommands.skeletons]
|
||||
|
||||
[subcommands.scripts]
|
||||
rs = "cargo-quick"
|
||||
js = "npm-quick"
|
2
scripts/cargo-quick
Executable file
2
scripts/cargo-quick
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
cargo new $@
|
7
scripts/npm-quick
Executable file
7
scripts/npm-quick
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
mkdir $1;
|
||||
cd $1 &&
|
||||
shift &&
|
||||
npm init -y $@ &&
|
||||
git init . &&
|
||||
cd ..
|
Loading…
Reference in a new issue