From 94c5dbd06ea1f662ceaafede992d1f931420e70c Mon Sep 17 00:00:00 2001 From: jsteuer <jan.steuer.htw@gmail.com> Date: Wed, 11 Dec 2019 10:04:56 +0100 Subject: [PATCH] ... --- package.json | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index d075d9a..756f2a9 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,23 @@ { "name": "@mathcoach/ide-api", "version": "1.1.0", - "description": "API zur MathCoach IDE", + "description": "API zur MathCoach IDE", "main": "./src/index.ts", "directories": { "example": "examples" }, "devDependencies": { - "rimraf": "^2.6.3", - "typedoc": "^0.14.2" + "rimraf": "^3.0.0", + "rollup": "^1.27.10", + "typedoc": "^0.15.4" }, "scripts": { - "clean": "rimraf dist/ && rimraf docs/", - "build": "npm run clean && npm run build-docs && npm run build-utils", - "build-utils": "tsc", - "build-docs": "typedoc mathcoach-api.d.ts src/ --out docs/ --mode file --theme minimal --includeDeclarations --excludeExternals --media ./media" + "clean": "rimraf dist/", + "build": "npm run clean && npm run build-api-docs && npm run build-utils-docs && npm run build-utils", + "build-utils": "tsc && rollup dist/es6/index.js --file dist/es5/ide-tool-utils.js --sourcemap --format iife --name MC.IdeUtils", + "build-api-docs": "typedoc src/mathcoach-api.d.ts --out dist/docs/ide-api/ --mode file --readme IDE-API.md --theme minimal --includeDeclarations --excludeExternals --media ./media", + "build-utils-docs": "typedoc src/ --out dist/docs/ide-tool-utils/ --mode file --readme IDE-TOOL-UTILS.md --theme minimal --includeDeclarations --excludeExternals --media ./media" }, "author": "jsteuer", "license": "" -} \ No newline at end of file +} -- Gitblit v1.10.0-SNAPSHOT