Skip to content

Commit

Permalink
Merge pull request #113 from nestjs/chore/build
Browse files Browse the repository at this point in the history
 chore: bump package version 5.9.3
  • Loading branch information
kamilmysliwiec authored Nov 5, 2018
2 parents 9019b4f + a232c35 commit 2450e18
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ tslint.json
*.ts

# definitions
!**/files/**.ts
!**/*.d.ts
!*.d.ts
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ FROM node:carbon-alpine as dev-dependencies
WORKDIR /nestjs/schematics
COPY package.json package.json
COPY package-lock.json package-lock.json
COPY .npmignore .npmignore
RUN npm install

FROM node:carbon-alpine as prod-dependencies
WORKDIR /nestjs/schematics
COPY package.json package.json
COPY package-lock.json package-lock.json
COPY .npmignore .npmignore
RUN npm install --production

FROM node:carbon-alpine as linter
Expand Down Expand Up @@ -38,6 +40,7 @@ COPY --from=builder /nestjs/schematics/dist .
COPY src/collection.json collection.json
COPY LICENSE LICENSE
COPY README.md README.md
COPY .npmignore .npmignore
COPY src .

RUN ls
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestjs/schematics",
"version": "5.9.2",
"version": "5.9.3",
"description": "Nest - modern, fast, powerful node.js web framework (@schematics)",
"main": "index.js",
"publishConfig": {
Expand Down

0 comments on commit 2450e18

Please sign in to comment.