-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
0.1.2 - adding some base test files to test downstream use and prep project structure for future code
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ node_modules | |
.npmrc | ||
|
||
# Local Project Items | ||
.vscode | ||
### .vscode | ||
.idea | ||
.well-known | ||
.htpasswd | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cSpell.words": [ | ||
"apdisk", | ||
"donotpresent", | ||
"ehthumbs", | ||
"encryptable", | ||
"esktop", | ||
"fseventsd", | ||
"icns", | ||
"msix", | ||
"stackdump", | ||
"timemachine" | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default function (): string; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default function (): void; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
declare const _default: string; | ||
export default _default; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default function (): void; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// ./src/generators/jetstream/gitignore.ts | ||
|
||
export default function (): string { | ||
|
||
const code = `# ./.gitignore | ||
# Laravel 10 | ||
/.phpunit.cache | ||
/bootstrap/ssr | ||
/node_modules | ||
/public/build | ||
/public/hot | ||
/public/storage | ||
/storage/*.key | ||
/vendor | ||
.env | ||
.env.backup | ||
.env.production | ||
.phpunit.result.cache | ||
Homestead.json | ||
Homestead.yaml | ||
auth.json | ||
npm-debug.log | ||
yarn-error.log | ||
/.fleet | ||
/.idea | ||
/.vscode | ||
# NPM Remote Credentials File | ||
.npmrc | ||
# Local Project Items | ||
.vscode | ||
.idea | ||
.well-known | ||
.htpasswd | ||
error_log | ||
# MacOS General | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
# MacOS Thumbnails | ||
._* | ||
# MacOS Files that might appear in the root of a volume | ||
.DocumentRevisions-V100 | ||
.fseventsd | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
.com.apple.timemachine.donotpresent | ||
# MacOS Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
# Windows thumbnail cache files | ||
Thumbs.db | ||
Thumbs.db:encryptable | ||
ehthumbs.db | ||
ehthumbs_vista.db | ||
# Dump file | ||
*.stackdump | ||
# Folder config file | ||
[Dd]esktop.ini | ||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msix | ||
*.msm | ||
*.msp | ||
# Windows shortcuts | ||
*.lnk | ||
` | ||
|
||
return code | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// ./cli/helpers/cliStartMessage.ts | ||
|
||
import gradientText from './gradientText.js' | ||
|
||
export default function (): void { | ||
|
||
// show cli start message | ||
console.log(` | ||
${gradientText('Welcome to the VILT DS CLI!')} | ||
${gradientText('---------------------------')} | ||
Install VILT/Jetstream stack starter files with VILT DS powered by VueVentus. | ||
`) | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// ./src/helpers/cwd.ts | ||
|
||
export default process.env.INIT_CWD |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
#!/usr/bin/env node | ||
// ./src/index.ts | ||
|
||
import gradientText from './helpers/gradientText.js' | ||
import cliStartMessage from './helpers/cliStartMessage.js' | ||
|
||
// show cli start message | ||
console.log(` | ||
import installViltDsJetstream from './installers/installViltDsJetstream.js' | ||
|
||
cliStartMessage() | ||
|
||
${gradientText('Welcome to the VILT DS CLI!')} | ||
${gradientText('---------------------------')} | ||
Install VILT stack starter files with VILT DS powered by VueVentus. | ||
`) | ||
installViltDsJetstream() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// ./src/installers/installViltDsJetstream.ts | ||
|
||
import gitignore from '../generators/jetstream/gitignore.js' | ||
|
||
export default function (): void { | ||
|
||
console.log(gitignore) | ||
|
||
} |