Skip to content

Commit

Permalink
chore: fix example loading path
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Jan 24, 2025
1 parent e2266dc commit 0a7b87d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/exclusive.cts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Context, defineCommand, run } from '../index'
import { Context, defineCommand, run } from '..'

const main = defineCommand({
meta: {
Expand Down
2 changes: 1 addition & 1 deletion examples/inquire.cts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { checkbox, defineCommand, password, run, select, type Context } from 'archons'
import { checkbox, defineCommand, password, run, select, type Context } from '..'

const main = defineCommand({
meta: {
Expand Down
2 changes: 1 addition & 1 deletion examples/no_version.cts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineCommand, run, type Context } from '../index'
import { defineCommand, run, type Context } from '..'

const main = defineCommand({
meta: {
Expand Down
2 changes: 1 addition & 1 deletion examples/simple.cts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineCommand, run, type Context } from '../index';
import { defineCommand, run, type Context } from '..';

const dev = defineCommand({
meta: {
Expand Down

0 comments on commit 0a7b87d

Please sign in to comment.