Skip to content

Commit 0478032

Browse files
🤖 config(build): Set type to module in package.json.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/042c55f2254a9efdce5074d537141d6f85a98927/src/transforms/package.json:set-type-module.js Please contact the author of the transform if you believe there was an error.
1 parent a0e2135 commit 0478032

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.commitlintrc.js .commitlintrc.cjs

File renamed without changes.

doc/manual/usage.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
The code needs a ES2015+ polyfill to work, for example
33
[regenerator-runtime/runtime](https://babeljs.io/docs/usage/polyfill).
44
```js
5-
require( 'regenerator-runtime/runtime' ) ;
5+
await import( 'regenerator-runtime/runtime.js' ) ;
66
// or
77
import 'regenerator-runtime/runtime.js' ;
88
```
99

1010
Then
1111
```js
12-
const { empty , from } = require( '@binary-search-tree/red-black-tree' ) ;
12+
const { empty , from } = await import( '@binary-search-tree/red-black-tree' ) ;
1313
// or
1414
import { empty , from } from '@binary-search-tree/red-black-tree' ;
1515
```

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"red-black tree"
2020
],
2121
"sideEffects": false,
22+
"type": "module",
2223
"source": "src/index.js",
2324
"main": "dist/index.cjs",
2425
"module": "dist/index.module.js",

0 commit comments

Comments
 (0)