Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
UmamiAppearance committed Aug 24, 2022
1 parent 5aee75f commit 45d778e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
"name": "import-manager",
"version": "0.1.2",
"description": "A class to analyze and manipulate JavaScript import statements from source code files.",
"main": "./src/core.js",
"main": "./cjs/import-manager.cjs",
"module": "./src/core.js",
"exports": {
"import": "./src/core.js"
"import": "./src/core.js",
"require": "./cjs/import-manager.cjs"
},
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from "ava";
import ImportManager from "../src/core.js";
import { ImportManager } from "../src/core.js";

// NOTE: the main testing will happen at the rollup plugin

Expand Down

0 comments on commit 45d778e

Please sign in to comment.