Skip to content

Commit 5526662

Browse files
committed
Rename from Packula to Snout
1 parent c86e495 commit 5526662

File tree

15 files changed

+36
-36
lines changed

15 files changed

+36
-36
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
extends: [
3-
'@packula',
3+
'@snout',
44
],
55
}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Packula router path extras
1+
# Snout router path extras
22

33
[![Current version][badge-version-image]][badge-version-link]
44
[![Bundle size][badge-bundle-image]][badge-bundle-link]
55
[![Build status][badge-build-image]][badge-build-link]
66
[![Test coverage][badge-coverage-image]][badge-coverage-link]
77

8-
[badge-build-image]: https://img.shields.io/github/workflow/status/packula/router-path-extras/CI?style=for-the-badge
9-
[badge-build-link]: https://github.com/packula/router-path-extras/actions/workflows/ci.yml
10-
[badge-bundle-image]: https://img.shields.io/bundlephobia/minzip/@packula/router-path-extras?style=for-the-badge
11-
[badge-bundle-link]: https://bundlephobia.com/result?p=@packula/router-path-extras
12-
[badge-coverage-image]: https://img.shields.io/codecov/c/gh/packula/router-path-extras?style=for-the-badge
13-
[badge-coverage-link]: https://codecov.io/gh/packula/router-path-extras
14-
[badge-version-image]: https://img.shields.io/npm/v/@packula/router-path-extras?label=%40packula%2Frouter-path-extras&logo=npm&style=for-the-badge
15-
[badge-version-link]: https://npmjs.com/package/@packula/router-path-extras
8+
[badge-build-image]: https://img.shields.io/github/workflow/status/snout-router/router-path-extras/CI?style=for-the-badge
9+
[badge-build-link]: https://github.com/snout-router/router-path-extras/actions/workflows/ci.yml
10+
[badge-bundle-image]: https://img.shields.io/bundlephobia/minzip/@snout/router-path-extras?style=for-the-badge
11+
[badge-bundle-link]: https://bundlephobia.com/result?p=@snout/router-path-extras
12+
[badge-coverage-image]: https://img.shields.io/codecov/c/gh/snout-router/router-path-extras?style=for-the-badge
13+
[badge-coverage-link]: https://codecov.io/gh/snout-router/router-path-extras
14+
[badge-version-image]: https://img.shields.io/npm/v/@snout/router-path-extras?label=%40snout%2Frouter-path-extras&logo=npm&style=for-the-badge
15+
[badge-version-link]: https://npmjs.com/package/@snout/router-path-extras

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = require('@packula/jest-config')
1+
module.exports = require('@snout/jest-config')

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "@packula/router-path-extras",
2+
"name": "@snout/router-path-extras",
33
"version": "0.0.0",
4-
"description": "Additional parameter types for Packula router path",
5-
"repository": "packula/router-path-extras",
6-
"bugs": "https://github.com/packula/router-path-extras/issues",
7-
"homepage": "https://packula.dev",
4+
"description": "Additional parameter types for Snout router path",
5+
"repository": "snout-router/router-path-extras",
6+
"bugs": "https://github.com/snout-router/router-path-extras/issues",
7+
"homepage": "https://snout.dev",
88
"author": "Erin Millard <[email protected]>",
99
"license": "MIT",
1010
"publishConfig": {
@@ -24,17 +24,17 @@
2424
"prepare": "rollup --config rollup.config.js"
2525
},
2626
"dependencies": {
27-
"@packula/regexp": "^0.2.0"
27+
"@snout/regexp": "^0.2.1"
2828
},
2929
"peerDependencies": {
30-
"@packula/router-path": "^0.2.0"
30+
"@snout/router-path": "^0.2.2"
3131
},
3232
"devDependencies": {
33-
"@packula/eslint-config": "^1.1.1",
34-
"@packula/jest-config": "^1.0.1",
35-
"@packula/rollup-config": "^1.1.1",
36-
"@packula/router-path": "^0.2.0",
37-
"@packula/tsconfig": "^1.0.2",
33+
"@snout/eslint-config": "^1.1.2",
34+
"@snout/jest-config": "^1.0.2",
35+
"@snout/rollup-config": "^1.1.2",
36+
"@snout/router-path": "^0.2.2",
37+
"@snout/tsconfig": "^1.0.3",
3838
"@typescript-eslint/eslint-plugin": "^4.18.0",
3939
"@typescript-eslint/parser": "^4.18.0",
4040
"codecov": "^3.0.2",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {createConfig} from '@packula/rollup-config'
1+
import {createConfig} from '@snout/rollup-config'
22
import packageJson from './package.json'
33

44
export default createConfig(packageJson)

src/coercion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Param} from '@packula/router-path'
1+
import {Param} from '@snout/router-path'
22

33
export function int<Name extends string> (name: Name): Param<Name, number> {
44
return {

src/optional.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {AnyParam, NormalizeParam, Param, param, ParamArg, ParamOrString} from '@packula/router-path'
2-
import {escape} from '@packula/regexp'
1+
import {AnyParam, NormalizeParam, Param, param, ParamArg, ParamOrString} from '@snout/router-path'
2+
import {escape} from '@snout/regexp'
33

44
export function optional<InnerParam extends ParamOrString> (
55
literals: TemplateStringsArray,

src/repeating.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import {Param} from '@packula/router-path'
2-
import {escape} from '@packula/regexp'
1+
import {Param} from '@snout/router-path'
2+
import {escape} from '@snout/regexp'
33

44
export function any<Name extends string> (
55
name: Name,

src/slash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Param} from '@packula/router-path'
1+
import {Param} from '@snout/router-path'
22

33
export function createSlash<Name extends string> (name: Name): Param<Name, boolean> {
44
return {

test/unit/any.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {path} from '@packula/router-path'
1+
import {path} from '@snout/router-path'
22

33
import {any} from '../../src/repeating'
44

0 commit comments

Comments
 (0)