Skip to content

Commit

Permalink
dependency updates / added remembrance / readme
Browse files Browse the repository at this point in the history
  • Loading branch information
UmamiAppearance committed May 16, 2023
1 parent 4cedb5d commit 306bce8
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 18 deletions.
4 changes: 4 additions & 0 deletions .remembrance.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"src": "./src/**",
"dist": "./cjs/**"
}
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@

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.

## Table of Contents
<details>
<summary><h2>Table of Contents</h2> <i>(click to expand)</i></summary>

- [Install](#install)
- [How it works](#how-it-works)
- [Usage](#usage)
Expand Down Expand Up @@ -75,6 +77,7 @@ A Rollup plugin which makes it possible to manipulate import statements. Feature
- [Debugging Files](#debugging-files)
- [Debugging Units](#debugging-units)
- [License](#license)
</details>


## Install
Expand Down
2 changes: 1 addition & 1 deletion cjs/rollup-plugin-import-manager.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const showDiff = (filename, source, code, diffOption) => {
/**
* [rollup-plugin-import-manager]{@link https://github.com/UmamiAppearance/rollup-plugin-import-manager}
*
* @version 0.6.1
* @version 0.6.2
* @author UmamiAppearance [[email protected]]
* @license MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion cjs/rollup-plugin-import-manager.cjs.map

Large diffs are not rendered by default.

33 changes: 23 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-import-manager",
"version": "0.6.1",
"version": "0.6.2",
"description": "A rollup plugin to add, modify, and remove imports (cjs/es6/dynamic)",
"main": "./cjs/rollup-plugin-import-manager.cjs",
"module": "./src/index.js",
Expand All @@ -13,7 +13,8 @@
"build:cjs": "rollup ./src/index.js --file ./cjs/rollup-plugin-import-manager.cjs --format cjs -m",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "ava"
"test": "remembrance && ava",
"test:dev": "ava"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -45,11 +46,12 @@
"@rollup/pluginutils": "^5.0.2",
"colorette": "^2.0.20",
"diff": "^5.1.0",
"import-manager": "^0.4.1"
"import-manager": "^0.4.2"
},
"devDependencies": {
"ava": "^5.2.0",
"eslint": "^8.40.0",
"rollup": "^3.21.6"
"remembrance": "^0.1.0",
"rollup": "^3.21.8"
}
}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* [rollup-plugin-import-manager]{@link https://github.com/UmamiAppearance/rollup-plugin-import-manager}
*
* @version 0.6.1
* @version 0.6.2
* @author UmamiAppearance [[email protected]]
* @license MIT
*/
Expand Down

0 comments on commit 306bce8

Please sign in to comment.