diff options
author | EuAndreh <eu@euandre.org> | 2024-02-23 06:05:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-02-23 06:05:21 -0300 |
commit | c36bf8e3577da31cf6d575879c7e92d3e9c7e4f1 (patch) | |
tree | 4fd5414e76490e297c4c770ff35e09149ef3658f /deps.mk | |
parent | Remove C code and cleanup repository (diff) | |
download | papod-c36bf8e3577da31cf6d575879c7e92d3e9c7e4f1.tar.gz papod-c36bf8e3577da31cf6d575879c7e92d3e9c7e4f1.tar.xz |
Big cleanup
- delete all SQLite Node-API code: we'll use the C++ one instead;
- implement hero.mjs, with tests!
- use ESM all over.
Diffstat (limited to 'deps.mk')
-rw-r--r-- | deps.mk | 38 |
1 files changed, 23 insertions, 15 deletions
@@ -1,21 +1,29 @@ -sources.js = \ - src/api.js \ - src/db.js \ - src/ircd.js \ - src/utils.js \ - src/web.js \ +sources.mjs = \ + src/api.mjs \ + src/bin.mjs \ + src/db.mjs \ + src/escape.mjs \ + src/hero.mjs \ + src/ircd.mjs \ + src/utils.mjs \ + src/web.mjs \ -tests.js = \ - tests/js/db.js \ - tests/js/ircd.js \ - tests/js/utils.js \ - tests/js/web.js \ +tests.mjs = \ + tests/js/db.mjs \ + tests/js/escape.mjs \ + tests/js/hero.mjs \ + tests/js/ircd.mjs \ + tests/js/utils.mjs \ + tests/js/web.mjs \ sources.sql = \ src/sql/migrations/2023-11-16T15:46:27-03:00-init-auth-data.sql \ +manpages.en.in = \ + doc/papo.en.1.in \ + doc/papo.en.3js.in \ + doc/papo.recipes.en.7.in \ + doc/papo.tutorial.en.7.in \ + doc/papo.why.en.7.in \ -tests/js/db.js-t: tests/js/db.js -tests/js/ircd.js-t: tests/js/ircd.js -tests/js/utils.js-t: tests/js/utils.js -tests/js/web.js-t: tests/js/web.js +manpages.in = $(manpages.en.in) |