@loopstack/core 0.0.2 → 0.0.3
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/CHANGELOG.md +9 -0
- package/package.json +15 -15
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@loopstack/core",
|
|
3
3
|
"displayName": "Loopstack Core Module",
|
|
4
4
|
"description": "The core module of the loopstack automation framework",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Jakob Klippel",
|
|
8
8
|
"url": "https://www.linkedin.com/in/jakob-klippel//"
|
|
@@ -10,20 +10,8 @@
|
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"main": "dist/index.js",
|
|
12
12
|
"types": "dist/index.d.ts",
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "nest build",
|
|
15
|
-
"watch": "nest build --watch",
|
|
16
|
-
"compile": "tsc --noEmit",
|
|
17
|
-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
18
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
19
|
-
"test": "jest",
|
|
20
|
-
"test:watch": "jest --watch",
|
|
21
|
-
"test:cov": "jest --coverage",
|
|
22
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
23
|
-
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
24
|
-
},
|
|
25
13
|
"dependencies": {
|
|
26
|
-
"@loopstack/shared": "
|
|
14
|
+
"@loopstack/shared": "^0.0.2",
|
|
27
15
|
"@nestjs/common": "^11.0.1",
|
|
28
16
|
"@nestjs/config": "^4.0.0",
|
|
29
17
|
"@nestjs/core": "^11.0.1",
|
|
@@ -90,5 +78,17 @@
|
|
|
90
78
|
],
|
|
91
79
|
"coverageDirectory": "../coverage",
|
|
92
80
|
"testEnvironment": "node"
|
|
81
|
+
},
|
|
82
|
+
"scripts": {
|
|
83
|
+
"build": "nest build",
|
|
84
|
+
"watch": "nest build --watch",
|
|
85
|
+
"compile": "tsc --noEmit",
|
|
86
|
+
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
87
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
88
|
+
"test": "jest",
|
|
89
|
+
"test:watch": "jest --watch",
|
|
90
|
+
"test:cov": "jest --coverage",
|
|
91
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
92
|
+
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
93
93
|
}
|
|
94
|
-
}
|
|
94
|
+
}
|