cspell-grammar 6.2.1 → 6.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/parsers/index.d.ts +2 -0
- package/dist/parsers/index.js +6 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.tokenizeText = exports.tokenizeLine = exports.compileGrammar = void 0;
|
|
3
|
+
exports.parsers = exports.tokenizeText = exports.tokenizeLine = exports.compileGrammar = void 0;
|
|
4
4
|
var parser_1 = require("./parser");
|
|
5
5
|
Object.defineProperty(exports, "compileGrammar", { enumerable: true, get: function () { return parser_1.compileGrammar; } });
|
|
6
6
|
Object.defineProperty(exports, "tokenizeLine", { enumerable: true, get: function () { return parser_1.tokenizeLine; } });
|
|
7
7
|
Object.defineProperty(exports, "tokenizeText", { enumerable: true, get: function () { return parser_1.tokenizeText; } });
|
|
8
|
+
var parsers_1 = require("./parsers");
|
|
9
|
+
Object.defineProperty(exports, "parsers", { enumerable: true, get: function () { return parsers_1.parsers; } });
|
|
8
10
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cspell-grammar",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.2",
|
|
4
4
|
"description": "Grammar parsing support for cspell",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cspell",
|
|
@@ -69,8 +69,8 @@
|
|
|
69
69
|
"rimraf": "^3.0.2"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@cspell/cspell-pipe": "^6.2.
|
|
73
|
-
"@cspell/cspell-types": "^6.2.
|
|
72
|
+
"@cspell/cspell-pipe": "^6.2.2",
|
|
73
|
+
"@cspell/cspell-types": "^6.2.2"
|
|
74
74
|
},
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "b7716e80c39a780f98cde747ad66c55247636621"
|
|
76
76
|
}
|