Skip to content

Commit

Permalink
Merge pull request #102 from scssyworks/feature/ver4
Browse files Browse the repository at this point in the history
Fixed TypeError issue
  • Loading branch information
scssyworks authored Dec 1, 2022
2 parents 099f454 + ffa52d1 commit 91019c1
Show file tree
Hide file tree
Showing 18 changed files with 274 additions and 56 deletions.
22 changes: 15 additions & 7 deletions dist/esm/silkrouter.esm.js

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

2 changes: 1 addition & 1 deletion dist/esm/silkrouter.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/silkrouter.esm.min.js

Large diffs are not rendered by default.

24 changes: 16 additions & 8 deletions dist/render/silkrouter.iife.js

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

2 changes: 1 addition & 1 deletion dist/render/silkrouter.iife.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/render/silkrouter.iife.min.js

Large diffs are not rendered by default.

22 changes: 15 additions & 7 deletions dist/umd/silkrouter.js

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

2 changes: 1 addition & 1 deletion dist/umd/silkrouter.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/umd/silkrouter.min.js

Large diffs are not rendered by default.

158 changes: 157 additions & 1 deletion package-lock.json

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

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@
"start": "env-cmd -f ./.env.start rollup -c --watch",
"dev": "env-cmd -f ./.env.dev rollup -c",
"dev:serve": "env-cmd -f ./.env.start.prod rollup -c",
"dist": "npm run dev && npm run dev:serve && npm run prod",
"prod": "env-cmd rollup -c",
"build": "npm run test && npm run dev && npm run dev:serve && npm run prod",
"build": "npm run check:sanity && npm run test && npm run dist",
"test": "jest tests/*",
"deploy": "gh-pages -d dist"
"deploy": "gh-pages -d dist",
"format": "rome format ./src --write",
"lint": "rome check ./src",
"check:sanity": "npm run lint && npm run format"
},
"author": "scssyworks",
"license": "MIT",
Expand Down Expand Up @@ -43,7 +47,8 @@
"files": [
"dist/umd/",
"dist/esm/",
"src/typings/"
"src/typings/",
"LICENSE"
],
"repository": {
"type": "git",
Expand Down Expand Up @@ -74,9 +79,10 @@
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rome": "^10.0.1",
"rxjs": "^7.5.6"
},
"peerDependencies": {
"rxjs": "^7.5.6"
}
}
}
Loading

0 comments on commit 91019c1

Please sign in to comment.