From 3e43d4003e6eea8ffd4539722acdc642d832cc2b Mon Sep 17 00:00:00 2001
From: jsteuer <jan.niklas.steuer@gmail.com>
Date: Fri, 20 Mar 2020 16:17:23 +0100
Subject: [PATCH] compile bugfix: use fixed version of marked (0.8.0) for now - update if they release a newer version than 0.8.1

---
 package.json |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package.json b/package.json
index aa8b989..b589df0 100644
--- a/package.json
+++ b/package.json
@@ -9,6 +9,7 @@
   },
   "devDependencies": {
     "ava": "^3.5.0",
+    "marked": "0.8.0",
     "nyc": "^15.0.0",
     "parcel": "^1.12.4",
     "rimraf": "^3.0.2",
@@ -18,12 +19,12 @@
     "typescript": "^3.8.3"
   },
   "scripts": {
-    "clean": "rimraf dist/ && rimraf docs/",
-    "test": "nyc ava",
+    "clean": "npx rimraf dist/ && rimraf docs/",
+    "test": "npx nyc ava",
     "build": "npm run clean  && npm run build-docs && npm run build-utils-es6 && npm run build-utils-lib",
-    "build-docs": "typedoc src/ --out docs/ --mode file --hideGenerator --theme minimal --includeDeclarations --excludeExternals --media ./media",
+    "build-docs": "npx typedoc src/ --out docs/ --mode file --hideGenerator --theme minimal --includeDeclarations --excludeExternals --media ./media",
     "build-utils-es6": "npx tsc --project tsconfig-es6.json",
-    "build-utils-lib": "parcel build src/index.ts --target node --bundle-node-modules --global MC_IDE_TOOL_UTILS --out-dir dist/lib --out-file mathcoach-ide-tool-utils.js --public-url ./"
+    "build-utils-lib": "npx parcel build src/index.ts --target node --bundle-node-modules --global MC_IDE_TOOL_UTILS --out-dir dist/lib --out-file mathcoach-ide-tool-utils.js --public-url ./"
   },
   "author": "jsteuer",
   "license": "",

--
Gitblit v1.10.0-SNAPSHOT