@ackplus/nest-dynamic-templates 1.1.13 → 1.1.15

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/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.15",
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,35 +33,19 @@
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
- },
52
36
  "peerDependencies": {
53
37
  "@nestjs/common": "^10.0.0 || ^11.0.0",
54
38
  "@nestjs/core": "^10.0.0 || ^11.0.0",
55
- "@faker-js/faker": "^9.0.0",
56
- "reflect-metadata": "^0.2.2",
39
+ "@faker-js/faker": "^9.0.0 || ^10.0.0",
40
+ "reflect-metadata": "^0.2",
57
41
  "handlebars": "^4.7.0",
58
42
  "mjml": "^4.14.0",
59
43
  "ejs": "^3.1.0",
60
44
  "nunjucks": "^3.2.0",
61
45
  "pug": "^3.0.0",
62
- "@nestjs/swagger": "^7.0.0 || ^8.0.0",
46
+ "@nestjs/swagger": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
63
47
  "typeorm": "^0.3.0",
64
- "@nestjs/typeorm": "^10.0.0",
48
+ "@nestjs/typeorm": "^10.0.0 || ^11.0.0",
65
49
  "htmlparser2": "^9.0.0"
66
50
  },
67
51
  "peerDependenciesMeta": {
@@ -163,5 +147,11 @@
163
147
  ],
164
148
  "coverageDirectory": "../coverage",
165
149
  "testEnvironment": "node"
150
+ },
151
+ "scripts": {
152
+ "clean": "rm -rf dist tsconfig.build.tsbuildinfo",
153
+ "build": "pnpm clean && pnpm -C ../.. exec tsc -p packages/nest-dynamic-templates/tsconfig.build.json",
154
+ "format": "prettier --write \"src/**/*.ts\"",
155
+ "lint": "eslint \"src/**/*.ts\" --fix"
166
156
  }
167
- }
157
+ }