Comparing version 2.1.1 to 2.1.2
@@ -1,5 +0,9 @@ | ||
## [2.1.1](https://github.com/GMOD/bed-js/compare/v2.1.0...v2.1.1) (2022-07-24) | ||
## [2.1.2](https://github.com/GMOD/bed-js/compare/v2.1.1...v2.1.2) (2022-07-24) | ||
- Add comment string to autoSql types | ||
## [2.1.1](https://github.com/GMOD/bed-js/compare/v2.1.0...v2.1.1) (2022-07-24) | ||
- Make autoSql a public class field | ||
@@ -9,4 +13,2 @@ | ||
- Typescriptify module and bump some devdeps | ||
@@ -16,4 +18,2 @@ | ||
- Publish src directory for better source maps | ||
@@ -23,4 +23,2 @@ | ||
- Add esm module export to package.json | ||
@@ -30,4 +28,2 @@ | ||
- Simplify build pipeline | ||
@@ -34,0 +30,0 @@ |
@@ -6,2 +6,3 @@ export interface AutoSqlPreSchema { | ||
name: string; | ||
comment: string; | ||
}[]; | ||
@@ -17,4 +18,5 @@ } | ||
name: string; | ||
comment: string; | ||
}[]; | ||
}; | ||
export declare type AutoSqlSchema = ReturnType<typeof detectTypes>; |
@@ -6,2 +6,3 @@ export interface AutoSqlPreSchema { | ||
name: string; | ||
comment: string; | ||
}[]; | ||
@@ -17,4 +18,5 @@ } | ||
name: string; | ||
comment: string; | ||
}[]; | ||
}; | ||
export declare type AutoSqlSchema = ReturnType<typeof detectTypes>; |
{ | ||
"name": "@gmod/bed", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "A BED file format parser with autoSql support", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
export interface AutoSqlPreSchema { | ||
fields: { size: number; type: string; name: string }[] | ||
fields: { size: number; type: string; name: string; comment: string }[] | ||
} | ||
@@ -4,0 +4,0 @@ |
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
346068
5411