From 773c1f7a81b8f381dfca987bdd71e80724a5599b Mon Sep 17 00:00:00 2001 From: Nahuel Palumbo Date: Wed, 28 Feb 2024 23:23:27 +0100 Subject: [PATCH 1/2] Update v0.2.1 Wollok-TS v4.0.9 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e136649..6e01e5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wollok-ts-cli", - "version": "0.2.0", + "version": "0.2.1", "description": "Wollok Command Line Interface", "repository": "https://github.com/uqbar-project/wollok-ts-cli", "license": "MIT", @@ -49,7 +49,7 @@ "pkg": "^5.8.1", "socket.io": "^4.5.1", "winston": "^3.11.0", - "wollok-ts": "4.0.8" + "wollok-ts": "4.0.9" }, "devDependencies": { "@types/chai": "^4.3.9", From bcf4129a38168ffaf2b5e295b9b9db950f0e8851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Nu=C3=B1ez?= <10672208+mind-ar@users.noreply.github.com> Date: Wed, 13 Mar 2024 20:52:13 -0300 Subject: [PATCH 2/2] corregido parametro --port (#133) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cc2bd70..8a14784 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,7 +22,7 @@ program.command('run') .option('-p, --project ', 'path to project', process.cwd()) .option('-a, --assets [path]', 'path relative to project for game assets. By default, it takes the assets definition from package.json.', 'assets') .option('--skipValidations', 'skip code validation', false) - .option('--port', 'port to run the server', '3000') + .option('--port [port]', 'port to run the server', '3000') .option('-g, --game', 'sets the program as a game', false) .option('-v, --verbose', 'print debugging information', false) .option('-d, --startDiagram', 'activate the dynamic diagram (only for games)', false)