You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

lezer-javascript

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lezer-javascript - npm Package Compare versions

Comparing version

to
0.8.1

.tern-port

@@ -0,1 +1,7 @@

## 0.8.1 (2020-02-28)
### New features
Provide an ES module file.
## 0.8.0 (2020-02-03)

@@ -2,0 +8,0 @@

3

package.json
{
"name": "lezer-javascript",
"version": "0.8.0",
"version": "0.8.1",
"description": "lezer-based JavaScript grammar",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "Marijn Haverbeke <marijnh@gmail.com>",

@@ -7,0 +8,0 @@ "license": "MIT",

@@ -5,6 +5,9 @@ import nodeResolve from "rollup-plugin-node-resolve"

input: "./src/parser.js",
output: {
output: [{
format: "cjs",
file: "./dist/index.js"
},
}, {
format: "es",
file: "./dist/index.es.js"
}],
external(id) { return !/^[\.\/]/.test(id) },

@@ -11,0 +14,0 @@ plugins: [