@spinajs/session-provider-redis 2.0.46 → 2.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # `jobs`
2
-
3
- > TODO: description
4
-
5
- ## Usage
6
-
7
- ```
8
- const jobs = require('jobs');
9
-
10
- // TODO: DEMONSTRATE API
11
- ```
1
+ # `jobs`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const jobs = require('jobs');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/lib/index.d.ts CHANGED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/lib/index.js CHANGED
@@ -1 +1,2 @@
1
+ export {};
1
2
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,54 +1,56 @@
1
- {
2
- "name": "@spinajs/session-provider-redis",
3
- "version": "2.0.46",
4
- "description": "jobs sending & pulling made easy",
5
- "main": "lib/index.js",
6
- "private": false,
7
- "scripts": {
8
- "build": "npm run clean && npm run compile",
9
- "compile": "tsc -p tsconfig.build.json",
10
- "clean": "",
11
- "test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
12
- "coverage": "nyc npm run test",
13
- "build-docs": "rimraf docs && typedoc --options typedoc.json src/",
14
- "prepare": "npm run build",
15
- "format": "prettier --write \"src/**/*.ts\"",
16
- "lint": "eslint -c .eslintrc.js --ext .ts src --fix",
17
- "prepublishOnly": "npm test && npm run lint",
18
- "preversion": "npm run lint",
19
- "version": "npm run format && git add -A src",
20
- "postversion": "git push && git push --tags"
21
- },
22
- "files": [
23
- "lib/**/*"
24
- ],
25
- "types": "lib",
26
- "repository": {
27
- "type": "git",
28
- "url": "git+https://github.com/spinajs/main.git"
29
- },
30
- "keywords": [
31
- "spinajs",
32
- "http"
33
- ],
34
- "author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/main)",
35
- "license": "MIT",
36
- "bugs": {
37
- "url": "https://github.com/spinajs/main/issues"
38
- },
39
- "homepage": "https://github.com/spinajs/main#readme",
40
- "devDependencies": {
41
- "@types/luxon": "^2.3.1",
42
- "@types/node": "^16.11.11",
43
- "@types/nodemailer": "^6.4.4",
44
- "@types/pug": "^2.0.4"
45
- },
46
- "dependencies": {
47
- "@spinajs/configuration": "^2.0.46",
48
- "@spinajs/di": "^2.0.46",
49
- "@spinajs/exceptions": "^2.0.39",
50
- "@spinajs/internal-logger": "^2.0.46",
51
- "@spinajs/log": "^2.0.46"
52
- },
53
- "gitHead": "bd560afd6c9a156071102cc6b4f36115b5498e9d"
54
- }
1
+ {
2
+ "name": "@spinajs/session-provider-redis",
3
+ "version": "2.0.50",
4
+ "description": "jobs sending & pulling made easy",
5
+ "exports": "./lib/index.js",
6
+ "type": "module",
7
+ "private": false,
8
+ "engines": {
9
+ "node": ">=16.11"
10
+ },
11
+ "scripts": {
12
+ "build": "npm run clean && npm run compile",
13
+ "compile": "tsc -b tsconfig.json",
14
+ "rimraf": "./node_modules/rimraf/bin.js",
15
+ "clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
16
+ "test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
17
+ "coverage": "nyc npm run test",
18
+ "build-docs": "rimraf docs && typedoc --options typedoc.json src/",
19
+ "format": "prettier --write \"src/**/*.ts\"",
20
+ "lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
21
+ "preversion": "npm run lint",
22
+ "version": "npm run format && git add -A src",
23
+ "postinstall": "npm run build"
24
+ },
25
+ "files": [
26
+ "lib/**/*"
27
+ ],
28
+ "types": "lib",
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/spinajs/main.git"
32
+ },
33
+ "keywords": [
34
+ "spinajs",
35
+ "http"
36
+ ],
37
+ "author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/main)",
38
+ "license": "MIT",
39
+ "bugs": {
40
+ "url": "https://github.com/spinajs/main/issues"
41
+ },
42
+ "homepage": "https://github.com/spinajs/main#readme",
43
+ "devDependencies": {
44
+ "@types/luxon": "^3.2.0",
45
+ "@types/node": "^18.11.18",
46
+ "@types/nodemailer": "^6.4.7",
47
+ "@types/pug": "^2.0.6"
48
+ },
49
+ "dependencies": {
50
+ "@spinajs/configuration": "^2.0.46",
51
+ "@spinajs/di": "^2.0.46",
52
+ "@spinajs/exceptions": "^2.0.39",
53
+ "@spinajs/log": "^2.0.46"
54
+ },
55
+ "gitHead": "027c4862bbc97c4dd4f8e468a712b804c80b07f9"
56
+ }
package/lib/jobs.js DELETED
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- module.exports = jobs;
4
-
5
- function jobs() {
6
- // TODO
7
- }