Skip to content

Commit

Permalink
Fixed package.json imports. Now saving as dev-dependencies non produc…
Browse files Browse the repository at this point in the history
…tion packages.
  • Loading branch information
arthurgermano committed May 7, 2021
1 parent ddef3de commit 132aa67
Show file tree
Hide file tree
Showing 12 changed files with 156 additions and 143 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Svelte Router changelog

## 1.0.12
- Fixed package.json imports. Now saving as dev-dependencies non production packages.
- Removed date-fns as production package - not using removeExpiredKeys and addExpiredKeys
- Remove @rollup/plugin-replace as production package

## 1.0.11
- (Component Not Defined Mandatory) - Now only throws an error when is going to load the component
- Added route option <b>forceReload</b>
Expand Down
2 changes: 1 addition & 1 deletion docs/build/bundle.css

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

4 changes: 2 additions & 2 deletions docs/build/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build/bundle.js.map

Large diffs are not rendered by default.

60 changes: 35 additions & 25 deletions package-lock.json

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

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte-client-router",
"version": "1.0.11",
"version": "1.0.12",
"author": "Arthur José Germano",
"license": "MIT",
"main": "src/index.js",
Expand All @@ -26,18 +26,17 @@
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.4.2",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"sirv-cli": "^1.0.11",
"svelte": "^3.0.0"
},
"dependencies": {
"@rollup/plugin-replace": "^2.4.2",
"date-fns": "^2.21.1",
"localforage": "^1.9.0",
"lodash": "^4.17.21",
"sirv-cli": "^1.0.0"
"lodash": "^4.17.21"
}
}
Loading

0 comments on commit 132aa67

Please sign in to comment.