Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-formidable",
"version": "0.0.6",
"version": "0.0.7",
"description": "The Formidable Framework Installer",
"author": "Donald Pakkies @donaldp",
"bin": {
Expand All @@ -17,7 +17,7 @@
"/oclif.manifest.json"
],
"dependencies": {
"@formidablejs/installer": "^0.9.6",
"@formidablejs/installer": "^0.9.7",
"@inquirer/prompts": "^1.2.1",
"@oclif/core": "^2",
"@oclif/plugin-help": "^5",
Expand Down
9 changes: 5 additions & 4 deletions src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ export default class Create extends Command {
static flags = {
'silent-install': Flags.boolean({ description: 'Install silently', char: 'q' }),
'sqlite-git-ignore': Flags.boolean({ description: 'Add SQLite Database to gitignore', char: 'G' }),
'use-pnpm': Flags.boolean({ description: 'Use pnpm instead of npm or yarn', char: 'p' }),
'use-npm': Flags.boolean({ description: 'Use npm instead of pnpm or yarn', char: 'n' }),
'use-yarn': Flags.boolean({ description: 'Use yarn instead of pnpm or npm', char: 'y' }),
'use-pnpm': Flags.boolean({ description: 'Use pnpm instead of npm, yarn or bun', char: 'p' }),
'use-npm': Flags.boolean({ description: 'Use npm instead of pnpm, yarn or bun', char: 'n' }),
'use-yarn': Flags.boolean({ description: 'Use yarn instead of pnpm, npm or bun', char: 'y' }),
'use-bun': Flags.boolean({ description: 'Use bun instead of pnpm, yarn or npm', char: 'b' }),
database: Flags.string({ description: 'The default database driver to use', char: 'd', options: ['MySQL', 'PostgreSQL', 'SQLite', 'MSSQL', 'Oracle', 'skip'] }),
dev: Flags.boolean({ description: 'Use dev branch' }),
git: Flags.boolean({ description: 'Initialize a Git repository', char: 'g' }),
imba: Flags.boolean({ description: 'Create Imba Full-Stack application' }),
language: Flags.string({ description: 'The default language to use', char: 'l', options: ['imba', 'typescript'] }),
manager: Flags.string({ description: 'The default package manager to use', char: 'm', options: ['npm', 'pnpm', 'yarn'] }),
manager: Flags.string({ description: 'The default package manager to use', char: 'm', options: ['npm', 'pnpm', 'yarn', 'bun'] }),
react: Flags.boolean({ description: 'Create React Full-Stack application' }),
scaffolding: Flags.string({ description: 'The default scaffolding to use', char: 'S', options: ['mpa', 'spa'] }),
stack: Flags.string({ description: 'The default stack to use', char: 's', options: ['imba', 'react', 'svelte', 'vue'] }),
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,10 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"

"@formidablejs/installer@^0.9.6":
version "0.9.6"
resolved "https://registry.yarnpkg.com/@formidablejs/installer/-/installer-0.9.6.tgz#c747854ec13b65da5fcf0932ce821c4f5fc2fa44"
integrity sha512-DlQzto83R88TtuwVyfo2BKXiTeBgpxHyfg9LYoLpyHhC0henpCx6KcsTI4u5B2iV93hiORvpY5mpfzC90bJeTw==
"@formidablejs/installer@^0.9.7":
version "0.9.7"
resolved "https://registry.yarnpkg.com/@formidablejs/installer/-/installer-0.9.7.tgz#6510474f3d4a55b2a91eaccf9416cbf5f548632a"
integrity sha512-87Pd9ms4NGGV7ZV9vNGsbdYWA8bZBwW4SD6utqMXbpLvDQcHj4jz69aIQ+GoMKTB/ffWA2oi4upRxYspM2vfbQ==
dependencies:
"@oclif/core" "^1"
"@oclif/plugin-help" "^5"
Expand Down