@lezer/html
Advanced tools
Comparing version 1.3.4 to 1.3.5
@@ -0,1 +1,7 @@ | ||
## 1.3.5 (2023-07-03) | ||
### Bug fixes | ||
Make the package work with new TS resolution styles. | ||
## 1.3.4 (2023-03-27) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "@lezer/html", | ||
"version": "1.3.4", | ||
"version": "1.3.5", | ||
"description": "lezer-based HTML grammar", | ||
@@ -8,6 +8,6 @@ "main": "dist/index.cjs", | ||
"exports": { | ||
"import": "./dist/index.es.js", | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"module": "dist/index.es.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
@@ -14,0 +14,0 @@ "author": "Marijn Haverbeke <marijn@haverbeke.berlin>", |
@@ -10,3 +10,3 @@ import {nodeResolve} from "@rollup/plugin-node-resolve" | ||
format: "es", | ||
file: "./dist/index.es.js" | ||
file: "./dist/index.js" | ||
}], | ||
@@ -13,0 +13,0 @@ external(id) { return !/^[\.\/]/.test(id) }, |
@@ -1,2 +0,2 @@ | ||
import {parser, configureNesting} from "../dist/index.es.js" | ||
import {parser, configureNesting} from "../dist/index.js" | ||
import {parser as jsParser} from "@lezer/javascript" | ||
@@ -7,3 +7,3 @@ import {fileTests} from "@lezer/generator/dist/test" | ||
import * as path from "path" | ||
import { fileURLToPath } from 'url'; | ||
import {fileURLToPath} from "url" | ||
let caseDir = path.dirname(fileURLToPath(import.meta.url)) | ||
@@ -10,0 +10,0 @@ |
@@ -1,2 +0,2 @@ | ||
import {parser as baseParser} from "../dist/index.es.js" | ||
import {parser as baseParser} from "../dist/index.js" | ||
import {TreeFragment} from "@lezer/common" | ||
@@ -3,0 +3,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
99171
21