Skip to content

Commit

Permalink
chore: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Oct 27, 2023
1 parent 731ab4e commit 442a2e2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ jobs:
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
VSCE_PAT: ${{ secrets.VSCE_PAT }}
3 changes: 1 addition & 2 deletions package-lock.json

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

1 change: 0 additions & 1 deletion packages/safe-ds-cli/esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const ctx = await esbuild.context({
'.js': '.cjs',
},
loader: { '.ts': 'ts' },
external: ['vscode'],
platform: 'node',
sourcemap: !minify,
minify,
Expand Down
9 changes: 4 additions & 5 deletions packages/safe-ds-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@safe-ds/cli",
"version": "0.2.0",
"version": "0.2.2",
"description": "A command line interface for the Safe-DS DSL.",
"author": {
"name": "Lars Reimann",
Expand All @@ -25,7 +25,7 @@
},
"type": "module",
"bin": {
"safe-ds": "./bin/cli"
"safe-ds": "./bin/cli.js"
},
"exports": null,
"files": [
Expand All @@ -36,10 +36,9 @@
"clean": "shx rm -rf dist lib tsconfig.tsbuildinfo",
"build": "tsc -b tsconfig.json && node esbuild.mjs",
"build:clean": "npm run clean && npm run build",
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.json --watch\" \"node esbuild.mjs --watch\"",
"start": "node ./bin/cli"
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.json --watch\" \"node esbuild.mjs --watch\""
},
"dependencies": {
"devDependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"esbuild": "^0.19.5",
Expand Down

0 comments on commit 442a2e2

Please sign in to comment.