Skip to content

Commit

Permalink
Merge pull request #1352 from nestjs/3.0.0
Browse files Browse the repository at this point in the history
chore: laying the grounds for v3.0.0
  • Loading branch information
kamilmysliwiec authored Jun 15, 2023
2 parents 6de82f2 + d63ecfa commit 9ddc830
Show file tree
Hide file tree
Showing 5 changed files with 16,228 additions and 39 deletions.
15 changes: 7 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: 2
aliases:
- &restore-cache
restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package.json" }}
- &install-deps
run:
name: Install dependencies
command: npm ci
name: Install dependencies
command: npm ci --ignore-scripts
- &build-packages
run:
name: Build
command: npm run build
name: Build
command: npm run build

jobs:
build:
Expand All @@ -27,14 +27,14 @@ jobs:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm ci
command: npm ci --ignore-scripts
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: Build
command: npm run build
command: npm run build

integration_tests:
working_directory: ~/nest
Expand All @@ -56,4 +56,3 @@ workflows:
- integration_tests:
requires:
- build

5 changes: 0 additions & 5 deletions lib/interfaces/config-module-options.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ export interface ConfigModuleOptions {
*/
envFilePath?: string | string[];

/**
* Environment file encoding.
*/
encoding?: string;

/**
* Custom function to validate environment variables. It takes an object containing environment
* variables as input and outputs validated environment variables.
Expand Down
Loading

0 comments on commit 9ddc830

Please sign in to comment.