Skip to content

Commit

Permalink
Merge pull request #195 from adopted-ember-addons/update-repository-url
Browse files Browse the repository at this point in the history
Update the `repository` field of the package.json to point to the new location
  • Loading branch information
SergeAstapov authored Oct 29, 2024
2 parents 0739872 + da9c1c0 commit d36dc54
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a href="https://badge.fury.io/js/validated-changeset"><img alt="Download count all time" src="https://img.shields.io/npm/dt/validated-changeset.svg"></a>
<a href="https://github.com/validated-changeset/validated-changeset/actions/workflows/ci.yml"><img alt="TravisCI Build Status" src="https://github.com/validated-changeset/validated-changeset/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://github.com/adopted-ember-addons/validated-changeset/actions/workflows/ci.yml"><img alt="TravisCI Build Status" src="https://github.com/adopted-ember-addons/validated-changeset/actions/workflows/ci.yml/badge.svg"></a>
<a href="https://badge.fury.io/js/validated-changeset"><img alt="npm version" src="https://badge.fury.io/js/validated-changeset.svg"></a>

```
Expand All @@ -8,7 +8,7 @@ npm install validated-changeset --save

#### tl;dr

This library is the base class for functionality in [ember-changeset](https://github.com/poteto/ember-changeset) but could be used with any front end framework. Example uses in template assume handlebars.
This library is the base class for functionality in [ember-changeset](https://github.com/adopted-ember-addons/ember-changeset) but could be used with any front end framework. Example uses in template assume handlebars.

```js
import { Changeset } from 'validated-changeset';
Expand Down Expand Up @@ -61,9 +61,9 @@ Changeset(model, lookupValidator(validationMap), validationMap, { skipValidate:

- `model` (required)

- `validationFunc` (optional) - see [ember-changeset-validations](https://github.com/poteto/ember-changeset-validations#usage) for usage.
- `validationFunc` (optional) - see [ember-changeset-validations](https://github.com/adopted-ember-addons/ember-changeset-validations#usage) for usage.

- `validationMap` (optional) - see [ember-changeset-validations](https://github.com/poteto/ember-changeset-validations#usage) for usage.
- `validationMap` (optional) - see [ember-changeset-validations](https://github.com/adopted-ember-addons/ember-changeset-validations#usage) for usage.

> note: `validationMap` might not be inclusive of all keys that can be set on an object.
Expand Down Expand Up @@ -117,7 +117,7 @@ export default class FormComponent {

## Examples

- [`ember-changeset`](https://github.com/poteto/ember-changeset)
- [`ember-changeset`](https://github.com/adopted-ember-addons/ember-changeset)
- [`svelte example`](https://codesandbox.io/s/validated-svelte-xc5lp?fontsize=14&hidenavigation=1&theme=dark)

## API
Expand Down Expand Up @@ -799,7 +799,7 @@ changeset.validate().then(() => {
#### `afterRollback`

This event is triggered after a rollback of the changeset.
This can be used for [some advanced use cases](https://github.com/offirgolan/validated-changeset-cp-validations/issues/25#issuecomment-375855834)
This can be used for [some advanced use cases](https://github.com/offirgolan/ember-changeset-cp-validations/issues/25#issuecomment-375855834)
where it is necessary to separately track all changes that are made to the changeset.

```js
Expand Down Expand Up @@ -877,7 +877,7 @@ if (isChangeset(model)) {

## Contributors

See all the wonderful [contributors](https://github.com/poteto/ember-changeset#contributors) who have made this library possible.
See all the wonderful [contributors](https://github.com/adopted-ember-addons/ember-changeset#contributors) who have made this library possible.

[//]: contributor-faces

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"start": "tsc -w & rollup -c rollup.config.ts -w",
"stats": "node scripts/size-calc",
"prebuild": "rimraf dist",
"test-external:ember-changeset": "./bin/test-external-changeset.js ember-changeset https://github.com/poteto/ember-changeset.git",
"test-external:ember-changeset-validations": "./bin/test-external-changeset.js ember-changeset-validations https://github.com/poteto/ember-changeset-validations.git",
"test-external:ember-changeset": "./bin/test-external-changeset.js ember-changeset https://github.com/adopted-ember-addons/ember-changeset.git",
"test-external:ember-changeset-validations": "./bin/test-external-changeset.js ember-changeset-validations https://github.com/adopted-ember-addons/ember-changeset-validations.git",
"contributors": "npx contributor-faces -e \"(*-bot|*\\[bot\\]|*-tomster|homu|bors)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/validated-changeset/validated-changeset.git"
"url": "git+https://github.com/adopted-ember-addons/validated-changeset.git"
},
"keywords": [
"changeset",
Expand All @@ -36,9 +36,9 @@
"author": "Scott Newcomer",
"license": "ISC",
"bugs": {
"url": "https://github.com/validated-changeset/validated-changeset/issues"
"url": "https://github.com/adopted-ember-addons/validated-changeset/issues"
},
"homepage": "https://github.com/validated-changeset/validated-changeset#readme",
"homepage": "https://github.com/adopted-ember-addons/validated-changeset#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.25",
Expand Down

0 comments on commit d36dc54

Please sign in to comment.