Skip to content

Commit e860fa2

Browse files
rollup update / remembrance dev tool
1 parent 552aa03 commit e860fa2

File tree

6 files changed

+31
-12
lines changed

6 files changed

+31
-12
lines changed

.remembrance.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"src": "./src/**",
3+
"dist": "./cjs/**"
4+
}

cjs/import-manager.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ class ImportManagerUnitMethods {
388388
* It handles code analysis, creates units from import
389389
* statements, attaches methods to the units and more.
390390
*
391-
* @version 0.4.1
391+
* @version 0.4.2
392392
* @author UmamiAppearance [mail@umamiappearance.eu]
393393
* @license MIT
394394
* @see https://github.com/UmamiAppearance/rollup-plugin-import-manager

cjs/import-manager.cjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 19 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "import-manager",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "A class to analyze and manipulate JavaScript import statements from source code files.",
55
"main": "./cjs/import-manager.cjs",
66
"module": "./src/core.js",
@@ -13,7 +13,8 @@
1313
"build:cjs": "rollup ./src/core.js --file ./cjs/import-manager.cjs --format cjs -m",
1414
"lint": "eslint ./src/*",
1515
"lint:fix": "eslint ./src/* --fix",
16-
"test": "ava"
16+
"test": "remembrance && ava",
17+
"test:dev": "ava"
1718
},
1819
"repository": {
1920
"type": "git",
@@ -39,7 +40,8 @@
3940
"devDependencies": {
4041
"ava": "^5.2.0",
4142
"eslint": "^8.40.0",
42-
"rollup": "^3.21.6"
43+
"remembrance": "^0.1.0",
44+
"rollup": "^3.21.8"
4345
},
4446
"dependencies": {
4547
"acorn": "^8.8.2",

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* It handles code analysis, creates units from import
77
* statements, attaches methods to the units and more.
88
*
9-
* @version 0.4.1
9+
* @version 0.4.2
1010
* @author UmamiAppearance [mail@umamiappearance.eu]
1111
* @license MIT
1212
* @see https://github.com/UmamiAppearance/rollup-plugin-import-manager

0 commit comments

Comments
 (0)