Öffentliche API zur MathCoach-IDE
jsteuer
2020-03-20 3e43d4003e6eea8ffd4539722acdc642d832cc2b
compile bugfix: use fixed version of marked (0.8.0) for now - update if they release a newer version than 0.8.1
2 files modified
15 ■■■■ changed files
package-lock.json 6 ●●●● patch | view | raw | blame | history
package.json 9 ●●●●● patch | view | raw | blame | history
package-lock.json
@@ -7742,9 +7742,9 @@
      }
    },
    "marked": {
      "version": "0.8.1",
      "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.1.tgz",
      "integrity": "sha512-tZfJS8uE0zpo7xpTffwFwYRfW9AzNcdo04Qcjs+C9+oCy8MSRD2reD5iDVtYx8mtLaqsGughw/YLlcwNxAHA1g==",
      "version": "0.8.0",
      "resolved": "https://registry.npmjs.org/marked/-/marked-0.8.0.tgz",
      "integrity": "sha512-MyUe+T/Pw4TZufHkzAfDj6HarCBWia2y27/bhuYkTaiUnfDYFnCP3KUN+9oM7Wi6JA2rymtVYbQu3spE0GCmxQ==",
      "dev": true
    },
    "matcher": {
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": "",