@tsed/cli 4.4.5 → 4.4.6
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": "@tsed/cli",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.6",
|
|
4
4
|
"source": "./src/index.ts",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"node": ">=14"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@tsed/cli-core": "4.4.
|
|
62
|
+
"@tsed/cli-core": "4.4.6",
|
|
63
63
|
"@tsed/core": ">=7.14.2",
|
|
64
64
|
"@tsed/di": ">=7.14.2",
|
|
65
65
|
"@tsed/logger": ">=6.2.1",
|
|
@@ -19,7 +19,7 @@ ARG NODE_VERSION=16.13.1
|
|
|
19
19
|
FROM node:${NODE_VERSION}-alpine as build
|
|
20
20
|
WORKDIR /opt
|
|
21
21
|
|
|
22
|
-
COPY package.json yarn.lock tsconfig.json tsconfig.compile.json .barrelsby.json ./
|
|
22
|
+
COPY package.json {{#if yarn}}yarn.lock{{/if}}{{#if npm}}package-lock.json{{/if}}{{#if pnpm}}pnpm-lock.yaml{{/if}} tsconfig.json tsconfig.compile.json .barrelsby.json ./
|
|
23
23
|
|
|
24
24
|
{{#if yarn}}
|
|
25
25
|
RUN yarn install --pure-lockfile{{/if}}{{#if npm}}
|