Skip to content

Commit

Permalink
Use ts-class-initializable instead of @madsci/ts-class-initializable
Browse files Browse the repository at this point in the history
  • Loading branch information
sgarner committed Feb 4, 2022
1 parent aaf71c6 commit 538c275
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
25 changes: 12 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@madsci/ts-class-initializable": "^1.0.1",
"js-yaml": "^3.14.0",
"sharp": "^0.27.0"
"sharp": "^0.27.0",
"ts-class-initializable": "^1.0.2"
},
"devDependencies": {
"@types/hapi__joi": "17.1.8",
Expand Down
2 changes: 1 addition & 1 deletion src/ImageMetadata.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Metadata, Channels } from 'sharp';
import { PartiallyInitializable } from '@madsci/ts-class-initializable';
import { PartiallyInitializable } from 'ts-class-initializable';
import { ImageMimeType } from './ImageMimeType';

export class ImageMetadata extends PartiallyInitializable<ImageMetadata> implements Metadata {
Expand Down
2 changes: 1 addition & 1 deletion src/Profile/ImageProfile.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Initializable } from '@madsci/ts-class-initializable';
import { Initializable } from 'ts-class-initializable';
import { ImageMimeType } from '../ImageMimeType';
import { ImageManipulator } from '../ImageManipulator';
import { ImageDimensions } from '../ImageDimensions';
Expand Down

0 comments on commit 538c275

Please sign in to comment.