From be6e4f2eee00ed5e6999e9aefc5697fd72313968 Mon Sep 17 00:00:00 2001 From: Pascal Garber Date: Wed, 28 Feb 2024 22:30:43 +0100 Subject: [PATCH] Removed unsupported cli arguments from examples --- examples/gjs/glib-2-spawn-command/package.json | 2 +- examples/gjs/gtk-3-builder/package.json | 2 +- examples/gjs/gtk-3-editor/package.json | 2 +- examples/gjs/gtk-3-hello/package.json | 2 +- examples/gjs/timers/package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/gjs/glib-2-spawn-command/package.json b/examples/gjs/glib-2-spawn-command/package.json index adfc68646..fb1763a89 100644 --- a/examples/gjs/glib-2-spawn-command/package.json +++ b/examples/gjs/glib-2-spawn-command/package.json @@ -10,7 +10,7 @@ "watch": "yarn build:app --watch", "build": "yarn build:types && yarn build:app", "build:app": "yarn clear:ts && webpack --env production", - "build:types": "yarn ts-for-gir generate GLib-2.0 --noNamespace -t cjs", + "build:types": "yarn ts-for-gir generate GLib-2.0 --noNamespace", "clear:types": "rm -rf ./@types", "clear:ts": "rm -rf ./dist", "clear": "yarn clear:ts && yarn clear:types", diff --git a/examples/gjs/gtk-3-builder/package.json b/examples/gjs/gtk-3-builder/package.json index b835795c1..12020e353 100644 --- a/examples/gjs/gtk-3-builder/package.json +++ b/examples/gjs/gtk-3-builder/package.json @@ -10,7 +10,7 @@ "watch": "yarn build:app --watch", "build": "yarn build:types && yarn build:app", "build:app": "yarn clear:ts && webpack --env production", - "build:types": "yarn ts-for-gir generate Gtk-3.0 -e gjs --noNamespace -t cjs", + "build:types": "yarn ts-for-gir generate Gtk-3.0 --noNamespace", "clear:types": "rm -rf ./@types", "clear:ts": "rm -rf ./dist", "clear": "yarn clear:ts && yarn clear:types", diff --git a/examples/gjs/gtk-3-editor/package.json b/examples/gjs/gtk-3-editor/package.json index 66812aa10..3846feac1 100644 --- a/examples/gjs/gtk-3-editor/package.json +++ b/examples/gjs/gtk-3-editor/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "yarn build:types && yarn build:app", "build:app": "yarn clear:app && webpack --env production", - "build:types": "yarn ts-for-gir generate Gtk-3.0 GtkSource-3.0 -e gjs --noNamespace -t cjs", + "build:types": "yarn ts-for-gir generate Gtk-3.0 GtkSource-3.0 --noNamespace", "clear:types": "rm -rf ./@types", "clear:app": "rm -rf ./dist", "clear": "yarn clear:app && yarn clear:types", diff --git a/examples/gjs/gtk-3-hello/package.json b/examples/gjs/gtk-3-hello/package.json index c6cac7490..2b44bd07b 100644 --- a/examples/gjs/gtk-3-hello/package.json +++ b/examples/gjs/gtk-3-hello/package.json @@ -7,7 +7,7 @@ "scripts": { "build": "yarn build:types && yarn build:app", "build:app": "yarn clear:app && webpack --env production", - "build:types": "yarn ts-for-gir generate Gtk-3.0 GtkSource-3.0 -e gjs --noNamespace -t cjs", + "build:types": "yarn ts-for-gir generate Gtk-3.0 GtkSource-3.0 --noNamespace", "clear:types": "rm -rf ./@types", "clear:app": "rm -rf ./dist", "clear": "yarn clear:app && yarn clear:types", diff --git a/examples/gjs/timers/package.json b/examples/gjs/timers/package.json index f6f22c200..b1180f0b3 100644 --- a/examples/gjs/timers/package.json +++ b/examples/gjs/timers/package.json @@ -7,7 +7,7 @@ "private": true, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "build:types": "yarn ts-for-gir generate Gtk-4.0 -e gjs --noNamespace -t cjs", + "build:types": "yarn ts-for-gir generate Gtk-4.0 --noNamespace", "build:app": "yarn node esbuild.js", "build": "yarn build:types && yarn build:app", "start:app": "gjs dist/main.js",