6 Commits

Author SHA1 Message Date
366856e904 1.0.5 2019-05-05 17:41:39 +02:00
173536be39 fix(core): update 2019-05-05 17:41:39 +02:00
af04a3d04b 1.0.4 2018-09-23 00:45:18 +02:00
efce7dfe6a fix(core): update 2018-09-23 00:45:18 +02:00
502fc9815f 1.0.3 2018-09-23 00:21:32 +02:00
a372e507f4 fix(core): update 2018-09-23 00:21:31 +02:00
6 changed files with 864 additions and 232 deletions

View File

@ -1,8 +1,6 @@
{
"npmci": {
"npmGlobalTools": [
"@gitzone/npmts",
"ts-node"
]
"npmGlobalTools": [],
"npmAccessLevel": "public"
}
}

1060
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,7 @@
{
"name": "@pushrocks/smartmarkdown",
"version": "1.0.2",
"version": "1.0.5",
"private": false,
"description": "do more with markdown files",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
@ -8,16 +9,17 @@
"license": "MIT",
"scripts": {
"test": "tstest test/",
"format": "(gitzone format)",
"build": "tsbuild"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tsrun": "^1.1.12",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.10.3"
"@gitzone/tsbuild": "^2.1.11",
"@gitzone/tsrun": "^1.2.6",
"@gitzone/tstest": "^1.0.20",
"@pushrocks/tapbundle": "^3.0.9",
"@types/node": "^12.0.0"
},
"dependencies": {},
"private": true
"dependencies": {
"@types/marked": "^0.6.5",
"marked": "^0.6.2"
}
}

View File

@ -2,7 +2,8 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmarkdown from '../ts/index';
tap.test('first test', async () => {
console.log(smartmarkdown.standardExport);
const mdString = smartmarkdown.markdownToHtml('# Hi!');
expect(mdString).to.equal('<h1 id="hi">Hi!</h1>\n');
});
tap.start();

View File

@ -1,3 +1,3 @@
import * as plugins from './smartmarkdown.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export const markdownToHtml = (mdString: string): string => plugins.marked(mdString);

View File

@ -1,2 +1,3 @@
const removeme = {};
export { removeme };
import marked = require('marked');
export { marked };