Skip to content

Commit

Permalink
Merge branch 'main' of github.com:nanostores/router
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
  • Loading branch information
easing committed Apr 9, 2024
2 parents 985a232 + ade1bad commit 6c8e762
Show file tree
Hide file tree
Showing 4 changed files with 712 additions and 394 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

## 0.14.2
* Fixed `:param?` RegExp (by @easing).

## 0.14.1
* Added Nano Stores 0.10 support.

Expand Down
16 changes: 16 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import loguxTsConfig from '@logux/eslint-config/ts'
import globals from 'globals'

/** @type {import('eslint').Linter.FlatConfig[]} */
export default [
{ ignores: ['**/errors.ts'] },
...loguxTsConfig,
{
languageOptions: {
globals: globals.browser
},
rules: {
'@typescript-eslint/no-explicit-any': 'off'
}
}
]
46 changes: 14 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nanostores/router",
"version": "0.14.1",
"description": "A tiny (684 bytes) router for Nano Stores state manager",
"version": "0.14.2",
"description": "A tiny (696 bytes) router for Nano Stores state manager",
"keywords": [
"nano",
"router",
Expand Down Expand Up @@ -41,29 +41,21 @@
"nanostores": "^0.9.0 || ^0.10.0"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"@size-limit/preset-small-lib": "^11.0.2",
"@logux/eslint-config": "^53.0.1",
"@size-limit/preset-small-lib": "^11.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"better-node-test": "^0.5.0",
"@types/node": "^20.12.6",
"better-node-test": "^0.5.1",
"c8": "^9.1.0",
"check-dts": "^0.7.2",
"clean-publish": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"clean-publish": "^4.4.0",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"jsdom": "^24.0.0",
"nanostores": "^0.10.0",
"size-limit": "^11.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
"nanostores": "^0.10.3",
"size-limit": "^11.1.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"prettier": {
"arrowParens": "avoid",
Expand All @@ -87,23 +79,13 @@
"skip-full": true,
"clean": true
},
"eslintConfig": {
"extends": "@logux/eslint-config/ts",
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"consistent-return": "off"
}
},
"eslintIgnore": [
"**/errors.ts"
],
"size-limit": [
{
"name": "Router",
"import": {
"./index.js": "{ createRouter }"
},
"limit": "684 B"
"limit": "696 B"
}
],
"clean-publish": {
Expand Down
Loading

0 comments on commit 6c8e762

Please sign in to comment.