Skip to content
Merged
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
10 changes: 10 additions & 0 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ export default defineConfig(
"install-dev": "npm i :content -D",
"install-global": "npm i :content -g",
"install-local": "npm i",
remove: "npm remove :content",
update: "npm update :content",
run: "npm run :content",
exec: "npx :content",
create: "npm init :content",
Expand All @@ -96,6 +98,8 @@ export default defineConfig(
"install-dev": "pnpm i :content -D",
"install-global": "pnpm i :content -g",
"install-local": "pnpm i",
remove: "pnpm remove :content",
update: "pnpm update :content",
run: "pnpm :content",
exec: "pnpx :content",
create: "pnpm create :content",
Expand All @@ -105,6 +109,8 @@ export default defineConfig(
"install-dev": "yarn add :content -D",
"install-global": "yarn add :content -g",
"install-local": "yarn i",
remove: "yarn remove :content",
update: "yarn upgrade :content",
run: "yarn :content",
exec: "yarn dlx :content",
create: "yarn create :content",
Expand All @@ -114,6 +120,8 @@ export default defineConfig(
"install-dev": "bun i :content -d",
"install-global": "bun i :content -g",
"install-local": "bun i",
remove: "bun remove :content",
update: "bun update :content",
run: "bun run :content",
exec: "bunx :content",
create: "bun create :content",
Expand All @@ -123,6 +131,8 @@ export default defineConfig(
"install-dev": "deno add npm::content -D",
"install-global": "deno add npm::content -g",
"install-local": "deno i",
remove: "deno remove npm::content",
update: "deno update npm::content",
run: "deno run :content",
exec: "dpx :content",
create: "deno init --npm :content",
Expand Down