Skip to content

Commit dae62e6

Browse files
committed
feat: upgrade tile38-ts from 1.x to the new major release 2.x
Tile38-ts changed the package scope from @TierMobility to @iwpnd
1 parent 222d397 commit dae62e6

11 files changed

+189
-215
lines changed

lib/decorators/inject-tile38.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Injectable } from '@nestjs/common';
22
import { Test, TestingModule } from '@nestjs/testing';
3-
import { Tile38 } from '@tiermobility/tile38-ts';
3+
import { Tile38 } from '@iwpnd/tile38-ts';
44

55
import { Tile38Module } from './../tile38.module';
66
import { InjectTile38 } from './inject-tile38';

lib/providers/create-tile38-provider.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Tile38 } from '@tiermobility/tile38-ts';
1+
import { Tile38 } from '@iwpnd/tile38-ts';
22

33
import { tile38ModuleToken } from './../constants';
44
import { createTile38Provider } from './create-tile38-provider';

lib/providers/create-tile38-provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Provider } from '@nestjs/common';
2-
import { Tile38 } from '@tiermobility/tile38-ts';
2+
import { Tile38 } from '@iwpnd/tile38-ts';
33

44
import { tile38ModuleToken } from './../constants';
55
import { Tile38ModuleOptions } from './../interfaces';

lib/tile38-core.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DynamicModule, Global, Module, OnApplicationShutdown, Provider } from '@nestjs/common';
22
import { ModuleRef } from '@nestjs/core';
3-
import { Tile38 } from '@tiermobility/tile38-ts';
3+
import { Tile38 } from '@iwpnd/tile38-ts';
44

55
import { tile38ModuleOptions, tile38ModuleToken } from './constants';
66
import { Tile38ModuleAsyncOptions, Tile38ModuleOptions, Tile38OptionsFactory } from './interfaces';

lib/tile38.module.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Module } from '@nestjs/common';
22
import { Test } from '@nestjs/testing';
3-
import { Tile38 } from '@tiermobility/tile38-ts';
3+
import { Tile38 } from '@iwpnd/tile38-ts';
44

55
import { tile38ModuleToken } from './constants';
66
import { Tile38ModuleOptions, Tile38OptionsFactory } from './interfaces';

lib/util/get-tile38-client.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Tile38 } from '@tiermobility/tile38-ts';
1+
import { Tile38 } from '@iwpnd/tile38-ts';
22

33
import { getTile38Client } from './get-tile38-client';
44

lib/util/get-tile38-client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Tile38 } from '@tiermobility/tile38-ts';
1+
import { Tile38 } from '@iwpnd/tile38-ts';
22

33
import { Tile38ModuleOptions } from './../interfaces';
44

0 commit comments

Comments
 (0)