Skip to content

Commit

Permalink
change package name from failed to published to uniquer name
Browse files Browse the repository at this point in the history
  • Loading branch information
huequica committed Feb 27, 2023
1 parent 2381aac commit 7a7c0cc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/en/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $ npm i -D mti
## 2. create document data, post

```ts
import { mti, InjectableCollectionModule } from 'mti';
import { mti, InjectableCollectionModule } from '@node-jeneralize/mti';

const users: User[] = [...new Array(10)].map((_, index) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion docs/en/relation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The `collectionName` above is resolved with `InjectableCollection.collectionName
Also, `collectionsNumber` is resolved at the index of `InjectableCollection.documents`.

```ts
import { InjectableCollection } from 'mti';
import { InjectableCollection } from '@node-jeneralize/mti';

interface MockedCat extends Omit<Cat, 'owner'> {
owner: string;
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $ npm i -D mti
## 2. ドキュメントデータを作って投入する

```ts
import { mti, InjectableCollectionModule } from 'mti';
import { mti, InjectableCollectionModule } from '@node-jeneralize/mti';

const users: User[] = [...new Array(10)].map((_, index) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/relation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface Cat {
また `collectionsNumber``InjectableCollection.documents` のインデックスで解決される

```ts
import { InjectableCollection } from 'mti';
import { InjectableCollection } from '@node-jeneralize/mti';

interface MockedCat extends Omit<Cat, 'owner'> {
owner: string;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mti",
"name": "@node-jeneralize/mti",
"description": "Developing test data inserter for MongoDB",
"version": "0.1.0",
"license": "MIT",
Expand Down

0 comments on commit 7a7c0cc

Please sign in to comment.