@ackplus/nest-dynamic-templates 1.1.13-beta.1 → 1.1.13
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/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ackplus/nest-dynamic-templates",
|
|
3
|
-
"version": "1.1.13
|
|
3
|
+
"version": "1.1.13",
|
|
4
4
|
"description": "A powerful and flexible dynamic template rendering library for NestJS applications with support for Nunjucks, Handlebars, EJS, MJML, and more.",
|
|
5
5
|
"author": "AckPlus",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,6 +33,22 @@
|
|
|
33
33
|
"url": "https://github.com/ack-solutions/nest-dynamic-templates/issues"
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/ack-solutions/nest-dynamic-templates#readme",
|
|
36
|
+
"scripts": {
|
|
37
|
+
"clean": "rm -rf dist",
|
|
38
|
+
"build": "npm run clean && nest build",
|
|
39
|
+
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
40
|
+
"start": "nest start",
|
|
41
|
+
"start:dev": "nest start --watch",
|
|
42
|
+
"start:debug": "nest start --debug --watch",
|
|
43
|
+
"start:prod": "node dist/main",
|
|
44
|
+
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
45
|
+
"test": "jest",
|
|
46
|
+
"test:watch": "jest --watch",
|
|
47
|
+
"test:cov": "jest --coverage",
|
|
48
|
+
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
49
|
+
"test:e2e": "jest --config ./test/jest-e2e.json",
|
|
50
|
+
"prepublishOnly": "npm run build"
|
|
51
|
+
},
|
|
36
52
|
"peerDependencies": {
|
|
37
53
|
"@nestjs/common": "^10.0.0 || ^11.0.0",
|
|
38
54
|
"@nestjs/core": "^10.0.0 || ^11.0.0",
|
|
@@ -147,20 +163,5 @@
|
|
|
147
163
|
],
|
|
148
164
|
"coverageDirectory": "../coverage",
|
|
149
165
|
"testEnvironment": "node"
|
|
150
|
-
},
|
|
151
|
-
"scripts": {
|
|
152
|
-
"clean": "rm -rf dist",
|
|
153
|
-
"build": "npm run clean && nest build",
|
|
154
|
-
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
155
|
-
"start": "nest start",
|
|
156
|
-
"start:dev": "nest start --watch",
|
|
157
|
-
"start:debug": "nest start --debug --watch",
|
|
158
|
-
"start:prod": "node dist/main",
|
|
159
|
-
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
|
|
160
|
-
"test": "jest",
|
|
161
|
-
"test:watch": "jest --watch",
|
|
162
|
-
"test:cov": "jest --coverage",
|
|
163
|
-
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
|
|
164
|
-
"test:e2e": "jest --config ./test/jest-e2e.json"
|
|
165
166
|
}
|
|
166
|
-
}
|
|
167
|
+
}
|