just-jeb / angular-builders

Angular build facade extensions (Jest and custom webpack configuration)
MIT License
1.14k stars 199 forks source link

Cannot install package #1806

Closed rognierbenoit closed 2 months ago

rognierbenoit commented 2 months ago

Describe the Bug

Here is the error message when installing:

$ npm i -D @angular-builders/custom-webpack
npm error code EUNSUPPORTEDPROTOCOL
npm error Unsupported URL Type "workspace:": workspace:*

Minimal Reproduction

Try to install with command above.

Environment

$ npm -version
10.7.0
$ node --version 
v20.14.0
$ ng version

     _                      _                 ____ _     ___
    / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
   / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
  / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
 /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                |___/

Angular CLI: 18.0.4
Node: 20.14.0
Package Manager: npm 10.7.0
OS: darwin arm64

Angular: 18.0.3
... animations, cdk, common, compiler, compiler-cli, core, forms
... material, platform-browser, platform-browser-dynamic, router

Package                         Version
---------------------------------------------------------
@angular-devkit/architect       0.1800.4
@angular-devkit/build-angular   18.0.4
@angular-devkit/core            18.0.4
@angular-devkit/schematics      18.0.4
@angular/cli                    18.0.4
@angular/fire                   18.0.1
@schematics/angular             18.0.4
rxjs                            7.8.1
typescript                      5.4.5
zone.js                         0.14.7
webns commented 2 months ago

The problem affects version 18.0.0-beta.2, you can install latest version with npm i -D @angular-builders/custom-webpack@next where package.json file is fixed

just-jeb commented 2 months ago

The package was graduated to stable (you can just install @angular-builders/custom-webpack@latest)

rognierbenoit commented 2 months ago

thanks!