@markuplint/parser-utils
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -0,1 +1,3 @@ | ||
export * from './ignore-block'; | ||
export * from './utils'; | ||
export declare function ignoreFrontMatter(code: string): string; |
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ignoreFrontMatter = void 0; | ||
__exportStar(require("./ignore-block"), exports); | ||
__exportStar(require("./utils"), exports); | ||
function ignoreFrontMatter(code) { | ||
@@ -5,0 +17,0 @@ const reStart = /^(?:\s*\r?\n)?---\r?\n/.exec(code); |
{ | ||
"name": "@markuplint/parser-utils", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Utility module for markuplint parser plugin", | ||
@@ -18,3 +18,10 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
}, | ||
"gitHead": "1806f99b6429b73ce498f6ecf641efc2400f47dd" | ||
"devDependencies": { | ||
"@markuplint/ml-ast": "^1.3.0", | ||
"@types/uuid": "^8.3.0" | ||
}, | ||
"dependencies": { | ||
"uuid": "^8.3.2" | ||
}, | ||
"gitHead": "15e11fd74042d8b378387644d36cd882962a9ec8" | ||
} |
@@ -6,5 +6,9 @@ { | ||
}, | ||
"references": [], | ||
"references": [ | ||
{ | ||
"path": "../ml-ast" | ||
} | ||
], | ||
"include": ["./src/**/*"], | ||
"exclude": ["node_modules"] | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
17
460
166335
1
2
1
+ Addeduuid@^8.3.2
+ Addeduuid@8.3.2(transitive)