Skip to content

Commit

Permalink
Rename from Packula to Snout
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Aug 4, 2021
1 parent b69f9fd commit dc10b1a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
extends: [
'@packula',
'@snout',
],
}
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Packula router path
# Snout router path

[![Current version][badge-version-image]][badge-version-link]
[![Bundle size][badge-bundle-image]][badge-bundle-link]
[![Build status][badge-build-image]][badge-build-link]
[![Test coverage][badge-coverage-image]][badge-coverage-link]

[badge-build-image]: https://img.shields.io/github/workflow/status/packula/router-path/CI?style=for-the-badge
[badge-build-link]: https://github.com/packula/router-path/actions/workflows/ci.yml
[badge-bundle-image]: https://img.shields.io/bundlephobia/minzip/@packula/router-path?style=for-the-badge
[badge-bundle-link]: https://bundlephobia.com/result?p=@packula/router-path
[badge-coverage-image]: https://img.shields.io/codecov/c/gh/packula/router-path?style=for-the-badge
[badge-coverage-link]: https://codecov.io/gh/packula/router-path
[badge-version-image]: https://img.shields.io/npm/v/@packula/router-path?label=%40packula%2Frouter-path&logo=npm&style=for-the-badge
[badge-version-link]: https://npmjs.com/package/@packula/router-path
[badge-build-image]: https://img.shields.io/github/workflow/status/snout-router/router-path/CI?style=for-the-badge
[badge-build-link]: https://github.com/snout-router/router-path/actions/workflows/ci.yml
[badge-bundle-image]: https://img.shields.io/bundlephobia/minzip/@snout/router-path?style=for-the-badge
[badge-bundle-link]: https://bundlephobia.com/result?p=@snout/router-path
[badge-coverage-image]: https://img.shields.io/codecov/c/gh/snout-router/router-path?style=for-the-badge
[badge-coverage-link]: https://codecov.io/gh/snout-router/router-path
[badge-version-image]: https://img.shields.io/npm/v/@snout/router-path?label=%40snout%2Frouter-path&logo=npm&style=for-the-badge
[badge-version-link]: https://npmjs.com/package/@snout/router-path
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('@packula/jest-config')
module.exports = require('@snout/jest-config')
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@packula/router-path",
"name": "@snout/router-path",
"version": "0.0.0",
"description": "A simple, light-weight, type-safe router path implementation",
"repository": "packula/router-path",
"bugs": "https://github.com/packula/router-path/issues",
"homepage": "https://packula.dev",
"repository": "snout-router/router-path",
"bugs": "https://github.com/snout-router/router-path/issues",
"homepage": "https://snout.dev",
"author": "Erin Millard <[email protected]>",
"license": "MIT",
"publishConfig": {
Expand All @@ -24,13 +24,13 @@
"prepare": "rollup --config rollup.config.js"
},
"dependencies": {
"@packula/regexp": "^0.2.0"
"@snout/regexp": "^0.2.1"
},
"devDependencies": {
"@packula/eslint-config": "^1.1.1",
"@packula/jest-config": "^1.0.1",
"@packula/rollup-config": "^1.1.1",
"@packula/tsconfig": "^1.0.2",
"@snout/eslint-config": "^1.1.2",
"@snout/jest-config": "^1.0.2",
"@snout/rollup-config": "^1.1.2",
"@snout/tsconfig": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"codecov": "^3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {createConfig} from '@packula/rollup-config'
import {createConfig} from '@snout/rollup-config'
import packageJson from './package.json'

export default createConfig(packageJson)
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {escape} from '@packula/regexp'
import {escape} from '@snout/regexp'

import {AllowOmitUndefined, Cast} from './types'

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@packula/tsconfig",
"extends": "@snout/tsconfig",
"compilerOptions": {
"moduleResolution": "node"
}
Expand Down

0 comments on commit dc10b1a

Please sign in to comment.