Description
Attempting to initialize KShield using the npm installation flow fails because npm is unable to resolve the requested package version (1.1.0). As a result, the installation terminates before the postinstall script is executed.
This blocks verification of the npm installation path for v1.1.0, including the automatic download of the platform-specific binary from the GitHub Release.
Steps to Reproduce
-
Open a terminal in a clean environment.
-
Create a new scratch repository:
mkdir kshield-test
cd kshield-test
git init
-
Run:
Expected Behavior
- npm should resolve and download
kshield@1.1.0.
- The
postinstall script should execute.
- The correct platform-specific binary should be downloaded from the v1.1.0 GitHub Release.
- KShield should initialize successfully.
Actual Behavior
npm fails before the installation begins with the following error:
npm ERR! code ETARGET
npm ERR! notarget No matching version found for kshield@1.1.0.
npm ERR! notarget In most cases you or one of your dependencies are requesting a package version that doesn't exist.
Since the package cannot be resolved, the postinstall script is never executed.
Impact
- Blocks the npm installation flow for v1.1.0.
- Prevents verification of the automatic platform binary download.
- Prevents end-to-end validation of the npm installation path as described in the v1.1.0 release verification checklist.
Environment
Notes
This issue appears to be related to the availability or publication of the kshield@1.1.0 package on the npm registry. Since the package cannot be resolved, the installation process does not reach the postinstall stage required to download the platform-specific binary.
Description
Attempting to initialize KShield using the npm installation flow fails because npm is unable to resolve the requested package version (
1.1.0). As a result, the installation terminates before thepostinstallscript is executed.This blocks verification of the npm installation path for v1.1.0, including the automatic download of the platform-specific binary from the GitHub Release.
Steps to Reproduce
Open a terminal in a clean environment.
Create a new scratch repository:
mkdir kshield-test cd kshield-test git initRun:
Expected Behavior
kshield@1.1.0.postinstallscript should execute.Actual Behavior
npm fails before the installation begins with the following error:
Since the package cannot be resolved, the
postinstallscript is never executed.Impact
Environment
OS: Windows 10
Package Manager: npm / npx
Command Executed:
Notes
This issue appears to be related to the availability or publication of the
kshield@1.1.0package on the npm registry. Since the package cannot be resolved, the installation process does not reach thepostinstallstage required to download the platform-specific binary.