Skip to content

Commit f212a56

Browse files
branding-changes
1 parent 6bfa643 commit f212a56

13 files changed

Lines changed: 19 additions & 18 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ branches:
99
notifications:
1010
email:
1111
recipients:
12+
# Todo: change this
1213
- kedar@plgworks.com
1314
on_success: always
1415
on_failure: always

InstanceComposer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Instance Composer from @plgworks/base
2+
* Instance Composer from @TrueSparrowSystems/base
33
*
44
* @module instance_composer
55
*/
66

7-
const Base = require('@plgworks/base');
7+
const Base = require('@TrueSparrowSystems/base');
88

99
module.exports = Base.InstanceComposer;

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![UniCache logo Dark](https://user-images.githubusercontent.com/7627517/195535780-47906a3b-c302-4c59-bb1e-d171914ff1bd.png)
22

3-
[![Latest version](https://img.shields.io/npm/v/@plgworks/unicache.svg?maxAge=3600)][npm]
3+
[![Latest version](https://img.shields.io/npm/v/@truesparrow/unicache.svg?maxAge=3600)][npm]
44

5-
[npm]: https://www.npmjs.com/package/@plgworks/unicache
5+
[npm]: https://www.npmjs.com/package/@truesparrow/unicache
66

77
UniCache is an open-source NPM package that provides unified / singleton interface and behavior for [Memcached](https://memcached.org/),
88
[Redis](https://redis.io/docs/) and In-memory caching. Easily interact or switch between them in minutes!
@@ -29,7 +29,7 @@ Follow the installation guides to get the caching engines of your choice, up and
2929

3030
## Install NPM
3131
```shell script
32-
npm install @plgworks/unicache --save
32+
npm install @truesparrow/unicache --save
3333
```
3434

3535
## Initialize
@@ -39,7 +39,7 @@ Example snippet for the UniCache singleton object initialization is given below.
3939
```js
4040
// Include the following snippet in a separate file, which can be required all accross the code to get unicache instance.
4141
// If using different caching engines simultaneously in a single codebase, have different files for each.
42-
const UniCache = require('@plgworks/unicache');
42+
const UniCache = require('@truesparrow/unicache');
4343

4444
const configStrategy = {
4545
engine: "none/redis/memcached",

config/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Base = require('@plgworks/base');
1+
const Base = require('@TrueSparrowSystems/base');
22

33
const rootPrefix = '..',
44
coreConstants = require(rootPrefix + '/config/coreConstant');

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Index File for @plgworks/cache
2+
* Index File for @TrueSparrowSystems/cache
33
*/
44

5-
const Base = require('@plgworks/base');
5+
const Base = require('@TrueSparrowSystems/base');
66

77
const rootPrefix = '.',
88
version = require(rootPrefix + '/package.json').version,

lib/existingInstance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// This is to share the instance map between multiple @plgworks/cache objects.
1+
// This is to share the instance map between multiple @TrueSparrowSystems/cache objects.
22

33
module.exports = {};

lib/formatter/response.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Base = require('@plgworks/base'),
1+
const Base = require('@TrueSparrowSystems/base'),
22
responseHelper = new Base.responseHelper({ moduleName: 'CustomCache' });
33

44
module.exports = responseHelper;

lib/implementer/InMemory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @module lib/implementer/InMemory
77
*/
88

9-
const Base = require('@plgworks/base');
9+
const Base = require('@TrueSparrowSystems/base');
1010

1111
const rootPrefix = '../..',
1212
cacheHelper = require(rootPrefix + '/lib/helper'),

lib/implementer/Memcached.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
const Memcached = require('memcached'),
8-
Base = require('@plgworks/base');
8+
Base = require('@TrueSparrowSystems/base');
99

1010
const rootPrefix = '../..',
1111
cacheHelper = require(rootPrefix + '/lib/helper'),

lib/implementer/Redis.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @module lib/implementer/Redis
66
*/
77

8-
const Base = require('@plgworks/base'),
8+
const Base = require('@TrueSparrowSystems/base'),
99
redis = require('redis');
1010

1111
const rootPrefix = '../..',

0 commit comments

Comments
 (0)