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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -200,3 +200,6 @@ packages/ui-extensions-dev-console/dist
packages/cli-kit/src/cli/api/graphql/*/*_schema.graphql

.claude/settings.local.json

# Local dev alias scripts
bin/p
5 changes: 5 additions & 0 deletions dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ up:
package_manager: pnpm@10.11.1
- packages:
- jq
- custom:
name: 'Create p alias for pnpm'
met?: test -x bin/p
meet: mkdir -p bin && printf '#!/bin/sh\nexec pnpm "$@"\n' > bin/p && chmod +x bin/p
- custom:
name: 'Install PNPM dependencies'
# we flip these two conditions to always run `pnpm install`
Expand All @@ -21,6 +25,7 @@ up:
env:
SHOPIFY_CLI_ENV: development
SHOPIFY_SERVICE_ENV: production
PATH: "${PATH}:${PWD}/bin"

open:
app: http://localhost:3000
Expand Down
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"liquidjs": "10.20.1",
"node-fetch": "^3.3.2",
"nx": "22.4.4",
"oclif": "4.22.73",
"oclif": "4.22.81",
"octokit-plugin-create-pull-request": "^3.12.2",
"pathe": "1.1.1",
"pin-github-action": "^3.3.1",
Expand Down Expand Up @@ -204,7 +204,8 @@
"packages/create-app": {
"entry": [
"**/{commands,hooks}/**/*.ts!",
"**/index.ts!"
"**/index.ts!",
"bin/**/*.js"
],
"project": "**/*.ts!",
"vite": {
Expand Down Expand Up @@ -255,7 +256,8 @@
"packages/cli-kit": {
"entry": [
"**/{commands,hooks}/**/*.ts!",
"**/public/**/*.{ts,tsx}!"
"**/public/**/*.{ts,tsx}!",
"bin/**/*.ts"
Copy link
Contributor Author

@gonzaloriestra gonzaloriestra Feb 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated changes to fix knip

],
"ignore": [
"**/graphql/**/generated/*.ts"
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading