From dc9874ad203f0bac2238cd963ae2665ba0c4694d Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Mon, 8 Aug 2022 11:30:47 +0200 Subject: [PATCH] chore: commit save point --- application/CHANGELOG | 1 + development/makefiles/node.mk | 4 ++-- documentation/config/jsdoc.json | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/application/CHANGELOG b/application/CHANGELOG index 2a9ee2ba7..00f5e76aa 100644 --- a/application/CHANGELOG +++ b/application/CHANGELOG @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. - New URL of the documentation - Bug fix typeOf (constructor name was recognized wrong) - Removal of the built version of the library +- Switching from js to mjs ## [1.31.0] - 2022-02-07 diff --git a/development/makefiles/node.mk b/development/makefiles/node.mk index ffee69525..86f82290a 100644 --- a/development/makefiles/node.mk +++ b/development/makefiles/node.mk @@ -26,9 +26,9 @@ $(NODE_MODULES_MODIFIED): $(NODE_PACKAGES) touch $(NODE_MODULES_MODIFIED) ## Main Develpoment Node Repos -NODE_ROOT_DIR ?= $(DEVELOPMENT_PATH) +NODE_ROOT_DIR ?= $(DEVELOPMENT_PATH) NODE_MODULES_DIR ?= $(NODE_ROOT_DIR)node_modules/ -NODE_PACKAGE_PATH ?= $(NODE_ROOT_DIR)package.json/ +NODE_PACKAGE_PATH ?= $(NODE_ROOT_DIR)package.json NODE_MODULES_BIN_DIR ?= $(NODE_MODULES_DIR).bin/ ESBUILD ?= $(NODE_MODULES_BIN_DIR)esbuild diff --git a/documentation/config/jsdoc.json b/documentation/config/jsdoc.json index b13767163..0e324eda3 100644 --- a/documentation/config/jsdoc.json +++ b/documentation/config/jsdoc.json @@ -3,8 +3,8 @@ "allowUnknownTags": true }, "source": { - "include": "../../application/source/", - "includePattern": "\\.js$", + "include": "application/source/", + "includePattern": "\\.mjs$", "excludePattern": "" }, "plugins": [ -- GitLab