Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nestjs/nest-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10.4.0
Choose a base ref
...
head repository: nestjs/nest-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10.4.1
Choose a head ref
  • 8 commits
  • 3 files changed
  • 3 contributors

Commits on Jun 28, 2024

  1. feat: less verbose 'missing packages' error message

    Following the same words are the errors raised by `@nestjs/common`
    micalevisk committed Jun 28, 2024
    Copy the full SHA
    f16f5b9 View commit details

Commits on Jul 2, 2024

  1. fix(deps): update dependency @nestjs/schematics to v10.1.2

    renovate[bot] authored Jul 2, 2024
    Copy the full SHA
    bc7a9f3 View commit details
  2. chore(deps): update typescript-eslint monorepo to v7.15.0

    renovate[bot] committed Jul 2, 2024
    Copy the full SHA
    a97ab8e View commit details
  3. fix(deps): update dependency typescript to v5.5.3

    renovate[bot] authored Jul 2, 2024
    Copy the full SHA
    40ab797 View commit details

Commits on Jul 3, 2024

  1. Merge pull request #2623 from micalevisk/less-confusing-missing-packa…

    …ges-error-msg
    
    feat: less verbose 'missing packages' error message
    kamilmysliwiec authored Jul 3, 2024
    Copy the full SHA
    f9f9d4c View commit details
  2. Merge pull request #2620 from nestjs/renovate/nest-monorepo

    fix(deps): update dependency @nestjs/schematics to v10.1.2
    kamilmysliwiec authored Jul 3, 2024
    Copy the full SHA
    f8fe10e View commit details
  3. Merge pull request #2622 from nestjs/renovate/typescript-5.x

    fix(deps): update dependency typescript to v5.5.3
    kamilmysliwiec authored Jul 3, 2024
    Copy the full SHA
    0abced2 View commit details
  4. chore(): release v10.4.1

    kamilmysliwiec committed Jul 3, 2024
    Copy the full SHA
    ca701d2 View commit details
Showing with 128 additions and 293 deletions.
  1. +1 −1 lib/compiler/swc/swc-compiler.ts
  2. +123 −288 package-lock.json
  3. +4 −4 package.json
2 changes: 1 addition & 1 deletion lib/compiler/swc/swc-compiler.ts
Original file line number Diff line number Diff line change
@@ -186,7 +186,7 @@ export class SwcCompiler extends BaseCompiler {
} catch (err) {
console.error(
ERROR_PREFIX +
' Failed to load "@swc/cli" and "@swc/core" packages. Please, install them by running "npm i -D @swc/cli @swc/core".',
' Failed to load "@swc/cli" and/or "@swc/core" required packages. Please, make sure to install them as development dependencies.',
);
process.exit(1);
}
Loading