From 8ec2f441d40ab89b40cc3158f65c914eff497cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 4 Oct 2021 23:18:24 +0200 Subject: Major typescript work. --- static/.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'static/.gitignore') diff --git a/static/.gitignore b/static/.gitignore index 735b5dce..3153016b 100644 --- a/static/.gitignore +++ b/static/.gitignore @@ -1,3 +1,13 @@ *.css .*-cache *.map +clock.js +dragable.js +globals.js +jcal.js +lib.js +popup.js +script.js +server_connect.js +types.js +vevent.js -- cgit v1.2.3 From c0968d263d5531d21a6ff9df111d63ca2c6e43fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 5 Nov 2021 19:34:01 +0100 Subject: Start depending on npm. Chromium can't handle JavaScript-modules in XHTML-document [1]. The workaround is to use a javascript bundler. Here we start depending on browserify. I evaluated both that and webpack, and browserify seemed to work marginally better with typescript. Unfortunately this also makes us depend on npm, where we unfortunately already are bloatet... $ ls static/node_modules | wc -l 174 [1]: https://bugs.chromium.org/p/chromium/issues/detail?id=717643 --- static/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'static/.gitignore') diff --git a/static/.gitignore b/static/.gitignore index 3153016b..3d4116d2 100644 --- a/static/.gitignore +++ b/static/.gitignore @@ -11,3 +11,4 @@ script.js server_connect.js types.js vevent.js +*.out.js -- cgit v1.2.3 From ae3142da0cf31696f4ab4ad258c5483b7c5490b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 8 Nov 2021 19:38:42 +0100 Subject: Major work on event creation. --- static/.gitignore | 1 + 1 file changed, 1 insertion(+) (limited to 'static/.gitignore') diff --git a/static/.gitignore b/static/.gitignore index 3d4116d2..9e9b559e 100644 --- a/static/.gitignore +++ b/static/.gitignore @@ -12,3 +12,4 @@ server_connect.js types.js vevent.js *.out.js +node_modules -- cgit v1.2.3 From b0170d8cbb14a05d791ae5560c6e15da3fabfd7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 15 Nov 2021 00:47:37 +0100 Subject: cleanup --- static/.gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to 'static/.gitignore') diff --git a/static/.gitignore b/static/.gitignore index 9e9b559e..78268647 100644 --- a/static/.gitignore +++ b/static/.gitignore @@ -13,3 +13,6 @@ types.js vevent.js *.out.js node_modules +elements.js +event-creator.js +deps.svg -- cgit v1.2.3 From 1014d52c0dc5643bbe0ce765688cf2df2cc0467f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Fri, 10 Dec 2021 01:51:35 +0100 Subject: Flip static/.gitignore. --- static/.gitignore | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'static/.gitignore') diff --git a/static/.gitignore b/static/.gitignore index 78268647..91b7c2f6 100644 --- a/static/.gitignore +++ b/static/.gitignore @@ -1,18 +1,7 @@ *.css .*-cache *.map -clock.js -dragable.js -globals.js -jcal.js -lib.js -popup.js -script.js -server_connect.js -types.js -vevent.js -*.out.js -node_modules -elements.js -event-creator.js deps.svg +*.js +!arbitary_kv.js +!input_list.js -- cgit v1.2.3