Skip to content

Commit

Permalink
🤖 config(build): Set type to module in package.json.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/457d6d9bfb7d08d917f0c3a95108832fc88fe176/src/transforms/package.json:set-type-module.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Dec 19, 2021
1 parent dbf81a3 commit 01eed3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions doc/manual/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
First, require the polyfill at the entry point of your application
```js
require( 'regenerator-runtime/runtime' );
await import( 'regenerator-runtime/runtime.js' );
// or
import 'regenerator-runtime/runtime.js' ;
```

Then, import the library where needed
```js
const trie = require( '@trie-data-structure/uncompressed-trie' ) ;
const trie = await import( '@trie-data-structure/uncompressed-trie' ) ;
// or
import * as trie from '@trie-data-structure/uncompressed-trie' ;
```
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"trie"
],
"sideEffects": false,
"type": "module",
"source": "src/index.js",
"main": "dist/index.cjs",
"module": "dist/index.module.js",
Expand Down

0 comments on commit 01eed3c

Please sign in to comment.