Commit 31b4e801 authored by mergify[bot]'s avatar mergify[bot] Committed by GitHub

Merge pull request #5068 from ethereum-optimism/willc/module-fix

fix(atst): Fix module and main in package.json
parents 9f0958f7 0180a822
---
'@eth-optimism/atst': minor
---
Fix main and module in atst package.json
......@@ -2,9 +2,9 @@
"name": "@eth-optimism/atst",
"version": "0.1.0",
"type": "module",
"main": "dist/index.js",
"main": "dist/index.cjs",
"types": "src/index.ts",
"module": "dist/index.cjs",
"module": "dist/index.js",
"license": "MIT",
"exports": {
".": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment