@lezer/python
Advanced tools
Comparing version 1.1.7 to 1.1.8
@@ -0,1 +1,7 @@ | ||
## 1.1.8 (2023-07-03) | ||
### Bug fixes | ||
Make the package work with new TS resolution styles. | ||
## 1.1.7 (2023-05-27) | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "@lezer/python", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"description": "Lezer-based Python 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} from "../dist/index.es.js" | ||
import {parser} from "../dist/index.js" | ||
import {fileTests} from "@lezer/generator/dist/test" | ||
@@ -3,0 +3,0 @@ import {Tree, TreeFragment} from "@lezer/common" |
@@ -1,2 +0,2 @@ | ||
import {parser} from "../dist/index.es.js" | ||
import {parser} from "../dist/index.js" | ||
import {fileTests} from "@lezer/generator/dist/test" | ||
@@ -6,3 +6,3 @@ | ||
import * as path from "path" | ||
import { fileURLToPath } from 'url'; | ||
import {fileURLToPath} from "url" | ||
let caseDir = path.dirname(fileURLToPath(import.meta.url)) | ||
@@ -9,0 +9,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
144786
16