Skip to content

Commit 306bce8

Browse files
dependency updates / added remembrance / readme
1 parent 4cedb5d commit 306bce8

File tree

7 files changed

+40
-18
lines changed

7 files changed

+40
-18
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+
}

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55

66
A Rollup plugin which makes it possible to manipulate import statements. Features are deleting, adding, changing the members and modules and much more. Supports ES6 Import Statements, CommonJS and Dynamic Imports.
77

8-
## Table of Contents
8+
<details>
9+
<summary><h2>Table of Contents</h2> <i>(click to expand)</i></summary>
10+
911
- [Install](#install)
1012
- [How it works](#how-it-works)
1113
- [Usage](#usage)
@@ -75,6 +77,7 @@ A Rollup plugin which makes it possible to manipulate import statements. Feature
7577
- [Debugging Files](#debugging-files)
7678
- [Debugging Units](#debugging-units)
7779
- [License](#license)
80+
</details>
7881

7982

8083
## Install

cjs/rollup-plugin-import-manager.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const showDiff = (filename, source, code, diffOption) => {
129129
/**
130130
* [rollup-plugin-import-manager]{@link https://github.com/UmamiAppearance/rollup-plugin-import-manager}
131131
*
132-
* @version 0.6.1
132+
* @version 0.6.2
133133
* @author UmamiAppearance [mail@umamiappearance.eu]
134134
* @license MIT
135135
*/

cjs/rollup-plugin-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: 23 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-import-manager",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "A rollup plugin to add, modify, and remove imports (cjs/es6/dynamic)",
55
"main": "./cjs/rollup-plugin-import-manager.cjs",
66
"module": "./src/index.js",
@@ -13,7 +13,8 @@
1313
"build:cjs": "rollup ./src/index.js --file ./cjs/rollup-plugin-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",
@@ -45,11 +46,12 @@
4546
"@rollup/pluginutils": "^5.0.2",
4647
"colorette": "^2.0.20",
4748
"diff": "^5.1.0",
48-
"import-manager": "^0.4.1"
49+
"import-manager": "^0.4.2"
4950
},
5051
"devDependencies": {
5152
"ava": "^5.2.0",
5253
"eslint": "^8.40.0",
53-
"rollup": "^3.21.6"
54+
"remembrance": "^0.1.0",
55+
"rollup": "^3.21.8"
5456
}
5557
}

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* [rollup-plugin-import-manager]{@link https://github.com/UmamiAppearance/rollup-plugin-import-manager}
33
*
4-
* @version 0.6.1
4+
* @version 0.6.2
55
* @author UmamiAppearance [mail@umamiappearance.eu]
66
* @license MIT
77
*/

0 commit comments

Comments
 (0)