Skip to content

Commit 33ca561

Browse files
Automated CI commit of compiled javascript
1 parent bdcc39f commit 33ca561

22 files changed

+40
-39
lines changed

dist/bin/compile-typescript-docs.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#! /usr/bin/env node
2+
export {};

dist/bin/compile-typescript-docs.js

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bin/compile-typescript-docs.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/// <reference types="bluebird" />
2-
import * as Bluebird from 'bluebird';
31
import { SnippetCompilationResult } from './src/SnippetCompiler';
4-
export declare function compileSnippets(markdownFileOrFiles?: string | string[]): Bluebird<SnippetCompilationResult[]>;
2+
export { SnippetCompilationResult } from './src/SnippetCompiler';
3+
export declare function compileSnippets(markdownFileOrFiles?: string | string[]): Promise<SnippetCompilationResult[]>;

dist/index.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/CodeBlockExtractor.d.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
/// <reference types="bluebird" />
2-
import * as Bluebird from 'bluebird';
31
export declare class CodeBlockExtractor {
42
static readonly TYPESCRIPT_CODE_PATTERN: RegExp;
53
private constructor();
6-
static extract(markdownFilePath: string): Bluebird<string[]>;
7-
private static readFile(path);
8-
private static extractCodeBlocksFromMarkdown(markdown);
4+
static extract(markdownFilePath: string): Promise<string[]>;
5+
private static readFile;
6+
private static extractCodeBlocksFromMarkdown;
97
}

dist/src/CodeBlockExtractor.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/CodeBlockExtractor.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/CodeWrapper.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)