0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Bootstrapped module for EventAwareCacheWrapper

refs https://github.com/TryGhost/Toolbox/issues/522

- This is generated code for a new module. Nothing special here
This commit is contained in:
Naz 2023-02-22 20:47:32 +08:00
parent 0ddf0dd003
commit 0301f5983e
No known key found for this signature in database
7 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,6 @@
module.exports = {
plugins: ['ghost'],
extends: [
'plugin:ghost/node'
]
};

View file

@ -0,0 +1,23 @@
# Event Aware Cache Wrapper
Cache wrapper allowing to reset the cache after certain events
## Usage
## Develop
This is a monorepo package.
Follow the instructions for the top-level repo.
1. `git clone` this repo & `cd` into it as usual
2. Run `yarn` to install top-level dependencies.
## Test
- `yarn lint` run just eslint
- `yarn test` run lint and tests

View file

@ -0,0 +1 @@
module.exports = require('./lib/event-aware-cache-wrapper');

View file

@ -0,0 +1,10 @@
class EventAwareCacheWrapper {
/**
* @param {Object} deps
*/
constructor(deps) {
}
}
module.exports = EventAwareCacheWrapper;

View file

@ -0,0 +1,26 @@
{
"name": "@tryghost/event-aware-cache-wrapper",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/event-aware-cache-wrapper",
"author": "Ghost Foundation",
"private": true,
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --100 --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code && yarn lint:test",
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"c8": "7.13.0",
"mocha": "10.2.0",
"sinon": "15.0.1"
},
"dependencies": {}
}

View file

@ -0,0 +1,6 @@
module.exports = {
plugins: ['ghost'],
extends: [
'plugin:ghost/test'
]
};

View file

@ -0,0 +1,8 @@
const assert = require('assert');
const EventAwareCacheWrapper = require('../index');
describe('EventAwareCacheWrapper', function () {
it('Can initialize', function () {
assert.ok(new EventAwareCacheWrapper());
});
});