Skip to content

Commit

Permalink
Removed unsupported cli arguments from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpLink committed Feb 28, 2024
1 parent 346b811 commit be6e4f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/gjs/glib-2-spawn-command/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/gjs/gtk-3-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/gjs/gtk-3-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/gjs/gtk-3-hello/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/gjs/timers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit be6e4f2

Please sign in to comment.