Skip to content

Commit

Permalink
[UPDATE] rename bundled files
Browse files Browse the repository at this point in the history
  • Loading branch information
mathix420 committed May 4, 2021
1 parent 6287913 commit 146c864
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Simple, lightweight, isomorphic, template-based validation library.
```bash
npm i vuito
```
Or via [JsDeliver](https://www.jsdelivr.com/package/npm/vuito?version=latest&path=lib), [UNPKG](https://unpkg.com/browse/vuito@latest/lib/vuito.min.js), or [bundle.run](https://bundle.run/vuito@latest).
Or via [JsDeliver](https://www.jsdelivr.com/package/npm/vuito?version=latest), [UNPKG](https://unpkg.com/browse/vuito@latest/vuito.min.js), or [bundle.run](https://bundle.run/vuito@latest).

# Usage

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "vuito",
"version": "1.1.0",
"version": "1.1.1",
"description": "Simple, lightweight, isomorphic, template-based validation library.",
"main": "index.cjs.js",
"module": "index.esm.js",
"types": "index.d.ts",
"main": "vuito.cjs.js",
"module": "vuito.esm.js",
"types": "vuito.d.ts",
"sideEffects": false,
"files": [
"*"
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const globals = {
};

export default {
input: 'src/index.ts',
input: 'src/vuito.ts',
output: [
{
dir: 'lib',
Expand Down
File renamed without changes.

0 comments on commit 146c864

Please sign in to comment.