Skip to content
This repository was archived by the owner on Aug 13, 2020. It is now read-only.

Commit 0b780ac

Browse files
bmeureradrianheine
authored andcommitted
Migrate to ESM
We've recently migrated Chrome DevTools to ESM, and have traditionally been using acorn as the parser for various features including the prettifier. In the context of https://crbug.com/1009927 we are looking into including numeric separator support in Chrome DevTools via this plugin, and in order to make that easier with our build system, I've added support for ESM output here in addition to the CJS output.
1 parent aae2342 commit 0b780ac

File tree

6 files changed

+40
-8
lines changed

6 files changed

+40
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
dist/
12
node_modules/

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.3 (2020-05-14)
2+
3+
* Migrate to ESM
4+
15
## 0.3.2 (2020-05-06)
26

37
* Also remove numeric separators in Literal's `bigint` property

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,21 @@ It implements support for numeric separators as defined in the stage 3 proposal
88

99
## Usage
1010

11-
This module provides a plugin that can be used to extend the Acorn `Parser` class to parse numeric separators:
11+
This module provides a plugin that can be used to extend the Acorn `Parser` class to parse numeric separators.
12+
You can either choose to use it via CommonJS (for example in Node.js) like this
1213

1314
```javascript
14-
var acorn = require('acorn');
15-
var numericSeparator = require('acorn-numeric-separator');
16-
acorn.Parser.extend(numericSeparator).parse('100_000');
15+
const {Parser} = require('acorn');
16+
const numericSeparator = require('acorn-numeric-separator');
17+
Parser.extend(numericSeparator).parse('100_000');
18+
```
19+
20+
or as an ECMAScript module like this:
21+
22+
```javascript
23+
import {Parser} from 'acorn';
24+
import numericSeparator from 'acorn-numeric-separator';
25+
Parser.extend(numericSeparator).parse('100_000');
1726
```
1827

1928
## License

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"contributors": [
66
"Adrian Heine <[email protected]>"
77
],
8+
"main": "dist/acorn-numeric-separator.js",
9+
"module": "dist/acorn-numeric-separator.mjs",
810
"engines": {
911
"node": ">=4.8.2"
1012
},
@@ -14,19 +16,22 @@
1416
},
1517
"license": "MIT",
1618
"scripts": {
19+
"build": "rollup -c rollup.config.js",
20+
"prepare": "npm run build",
1721
"test": "mocha",
1822
"test:test262": "node run_test262.js",
1923
"lint": "eslint -c .eslintrc.json ."
2024
},
2125
"peerDependencies": {
2226
"acorn": "^6 || ^7"
2327
},
24-
"version": "0.3.2",
28+
"version": "0.3.3",
2529
"devDependencies": {
2630
"acorn": "^7",
2731
"eslint": "^6",
2832
"eslint-plugin-node": "^11",
2933
"mocha": "^7",
34+
"rollup": "^2.10.0",
3035
"test262": "git+https://github.com/tc39/test262.git#a3c7d30cbb68ebcdc522df362dffbc31465b0d1d",
3136
"test262-parser-runner": "^0.5.0"
3237
}

rollup.config.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
export default {
2+
input: "src/index.js",
3+
output: [
4+
{
5+
file: "dist/acorn-numeric-separator.js",
6+
format: "cjs",
7+
sourcemap: true
8+
},
9+
{
10+
file: "dist/acorn-numeric-separator.mjs",
11+
format: "es",
12+
sourcemap: true
13+
}
14+
]
15+
}

index.js src/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use strict"
2-
31
function withoutAcornBigInt(acorn, Parser) {
42
return class extends Parser {
53
readInt(radix, len) {
@@ -144,7 +142,7 @@ function withAcornBigInt(acorn, Parser) {
144142
}
145143
}
146144

147-
module.exports = function(Parser) {
145+
export default function numericSeparator(Parser) {
148146
const acorn = Parser.acorn || require("acorn")
149147
const withAcornBigIntSupport = (acorn.version.startsWith("6.") && !(acorn.version.startsWith("6.0.") || acorn.version.startsWith("6.1."))) || acorn.version.startsWith("7.")
150148

0 commit comments

Comments
 (0)