Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the repository field of the package.json to point to the new location #195

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading