Skip to content

Commit

Permalink
fix missing model-validation renames
Browse files Browse the repository at this point in the history
supports #13, #18
  • Loading branch information
DanielSchaffer committed Oct 5, 2018
1 parent cfe006a commit 01bc6ab
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ allow developers to use only the features they require.
- **[@dandi/config](./config)** 🕸 - Configuration services
- **[@dandi/hal](./hal)** - 🕸 - Model decorators, basic types and utilities for supporting HAL
- **[@dandi/model](./model)** 🕸 - Model decorators
- **[@dandi/model-validation](./model-validation)** 🕸 - Model validation utilities
- **[@dandi/model-builder](./model-builder)** 🕸 - Model validation utilities
- **[@dandi/mvc](./mvc)** - MVC decorators and base utilities (not specific to Express)
- **[@dandi/mvc-hal](./mvc-hal)** - Supports rendering HAL JSON from existing `@dandi/mvc` controllers

Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-wrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class MyModel {

// main.ts
import { AwsLambdaHttpModule, Lambda } from '@dandi/aws-lambda';
import { Validation } from '@dandi/model-validation';
import { Validation } from '@dandi/model-builder';
import { MyHandler } from './my-handler';
import { MyModel } from './my-model';

Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-wrap/npm.link
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

npm link @dandi/common
npm link @dandi/core
npm link @dandi/model-validation
npm link @dandi/model-builder
2 changes: 1 addition & 1 deletion aws-lambda-wrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"peerDependencies": {
"@dandi/common": "1.0.0-alpha.26",
"@dandi/core": "1.0.0-alpha.26",
"@dandi/model-validation": "1.0.0-alpha.26"
"@dandi/model-builder": "1.0.0-alpha.26"
},
"dependencies": {
"aws-lambda": "^0.1.2"
Expand Down
2 changes: 1 addition & 1 deletion config/npm.link
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
npm link @dandi/common
npm link @dandi/core
npm link @dandi/model
npm link @dandi/model-validation
npm link @dandi/model-builder
2 changes: 1 addition & 1 deletion config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@dandi/common": "1.0.0-alpha.26",
"@dandi/core": "1.0.0-alpha.26",
"@dandi/model": "1.0.0-alpha.26",
"@dandi/model-validation": "1.0.0-alpha.26"
"@dandi/model-builder": "1.0.0-alpha.26"
},
"devDependencies": {}
}
2 changes: 1 addition & 1 deletion data-pg/npm.link
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ npm link @dandi/common
npm link @dandi/data
npm link @dandi/core
npm link @dandi/model
npm link @dandi/model-validation
npm link @dandi/model-builder
2 changes: 1 addition & 1 deletion data-pg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"@dandi/core": "1.0.0-alpha.26",
"@dandi/data": "1.0.0-alpha.26",
"@dandi/model": "1.0.0-alpha.26",
"@dandi/model-validation": "1.0.0-alpha.26"
"@dandi/model-builder": "1.0.0-alpha.26"
}
}
2 changes: 1 addition & 1 deletion mvc-express/npm.link
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ npm link @dandi/cache
npm link @dandi/common
npm link @dandi/core
npm link @dandi/model
npm link @dandi/model-validation
npm link @dandi/model-builder
npm link @dandi/mvc
2 changes: 1 addition & 1 deletion mvc-express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@dandi/common": "1.0.0-alpha.26",
"@dandi/core": "1.0.0-alpha.26",
"@dandi/model": "1.0.0-alpha.26",
"@dandi/model-validation": "1.0.0-alpha.26",
"@dandi/model-builder": "1.0.0-alpha.26",
"@dandi/mvc": "1.0.0-alpha.26"
}
}
2 changes: 1 addition & 1 deletion mvc/npm.link
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ npm link @dandi/cache
npm link @dandi/common
npm link @dandi/core
npm link @dandi/model
npm link @dandi/model-validation
npm link @dandi/model-builder
2 changes: 1 addition & 1 deletion mvc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"@dandi/common": "1.0.0-alpha.26",
"@dandi/core": "1.0.0-alpha.26",
"@dandi/model": "1.0.0-alpha.26",
"@dandi/model-validation": "1.0.0-alpha.26"
"@dandi/model-builder": "1.0.0-alpha.26"
}
}
12 changes: 0 additions & 12 deletions test/mocha.opts.tmp

This file was deleted.

0 comments on commit 01bc6ab

Please sign in to comment.