mdast-builder
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -0,1 +1,8 @@ | ||
## [1.1.1](https://github.com/mike-north/mdast-builder/compare/v1.1.0...v1.1.1) (2019-07-28) | ||
### Bug Fixes | ||
* correct `table` align type ([978ef70](https://github.com/mike-north/mdast-builder/commit/978ef70)) | ||
# [1.1.0](https://github.com/mike-north/mdast-builder/compare/v1.0.1...v1.1.0) (2019-02-22) | ||
@@ -2,0 +9,0 @@ |
@@ -11,4 +11,4 @@ import { Node, Parent } from "unist"; | ||
export declare const tableRow: (kids?: Node | Node[] | (() => Node | Node[]) | undefined) => Parent; | ||
export declare const table: (align?: ["left" | "right", "left" | "right" | "center"] | undefined, kids?: Node | Node[] | (() => Node | Node[]) | undefined) => { | ||
align: ["left" | "right", "left" | "right" | "center"] | undefined; | ||
export declare const table: (align?: ("left" | "right" | "center" | null)[] | undefined, kids?: Node | Node[] | (() => Node | Node[]) | undefined) => { | ||
align: ("left" | "right" | "center" | null)[] | undefined; | ||
children: Node[]; | ||
@@ -15,0 +15,0 @@ type: string; |
@@ -7,3 +7,3 @@ { | ||
], | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"license": "BSD-2-Clause", | ||
@@ -26,18 +26,18 @@ "scripts": { | ||
"devDependencies": { | ||
"@commitlint/cli": "7.5.2", | ||
"@commitlint/config-conventional": "7.5.0", | ||
"@commitlint/travis-cli": "7.5.2", | ||
"@commitlint/cli": "8.0.0", | ||
"@commitlint/config-conventional": "8.0.0", | ||
"@commitlint/travis-cli": "8.0.0", | ||
"@mike-north/js-lib-renovate-config": "1.3.1", | ||
"@mike-north/js-lib-semantic-release-config": "1.0.1", | ||
"@types/chai": "4.1.7", | ||
"@types/mocha": "5.2.6", | ||
"@types/mocha": "5.2.7", | ||
"chai": "4.2.0", | ||
"husky": "1.3.1", | ||
"mocha": "6.0.1", | ||
"mocha": "6.0.2", | ||
"mocha-typescript": "1.1.17", | ||
"nyc": "13.3.0", | ||
"remark-stringify": "6.0.4", | ||
"source-map-support": "0.5.10", | ||
"ts-node": "8.0.2", | ||
"typescript": "3.3.3", | ||
"source-map-support": "0.5.11", | ||
"ts-node": "8.1.1", | ||
"typescript": "3.3.3333", | ||
"unified": "7.1.0" | ||
@@ -44,0 +44,0 @@ }, |
@@ -39,3 +39,3 @@ import { Node, Parent } from "unist"; | ||
export const table = ( | ||
align?: ["left" | "right", "left" | "right" | "center"], | ||
align?: ("left" | "right" | "center" | null)[], | ||
kids?: Children | ||
@@ -42,0 +42,0 @@ ) => ({ ...nodeWithChildren("table", kids), align }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33585
27