Skip to content

Commit

Permalink
fix new paths
Browse files Browse the repository at this point in the history
  • Loading branch information
plusminushalf committed Jun 4, 2024
1 parent 834cd1b commit 7fc630b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"author": "Pimlico",
"license": "GPL-3.0-or-later",
"bin": {
"alto": "./src/lib/cli/alto.js"
"alto": "./packages/alto/lib/cli/alto.js"
},
"scripts": {
"prepare": "pnpm run build",
"clean": "rm -rf ./src/lib ./src/*.tsbuildinfo",
"clean-modules": "rm -rf ./src/node_modules node_modules",
"clean": "rm -rf ./packages/alto/lib ./src/*.tsbuildinfo",
"clean-modules": "rm -rf ./packages/alto/node_modules node_modules",
"build": "pnpm -r run build",
"start": "node src/lib/cli/alto.js run",
"start": "node ./packages/alto/lib/cli/alto.js run",
"dev": "pnpm -r run dev",
"test": "pnpm -r --workspace-concurrency 1 test --verbose=true",
"test:spec": "./packages/spec-tests/run-spec-tests.sh",
Expand Down
4 changes: 2 additions & 2 deletions packages/alto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"build": "tsc -p ./tsconfig.json && tsc-alias -p tsconfig.json",
"dev": "nodemon --exec DOTENV_CONFIG_PATH=$(pwd)/../.env ts-node -r tsconfig-paths/register cli/alto.ts run",
"test": "test -d test && mocha test/**/*.test.ts --exit || echo 'No test folder found. Skipping tests.'",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
"lint": "eslint ./**/*.ts",
"lint:fix": "eslint ./**/*.ts --fix"
},
"exports": {
"." : {
Expand Down

0 comments on commit 7fc630b

Please sign in to comment.