We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Currently the package.json declares the bundle names incorrectly (copy paste mistake most likely)
"main": "dist/cactus-core-api.node.umd.js", "mainMinified": "dist/cactus-core-api.node.umd.min.js", "browser": "dist/cactus-core-api.web.umd.js", "browserMinified": "dist/cactus-core-api.web.umd.min.js",
The correct values would be:
"main": "dist/cactus-cmd-api-server.node.umd.js", "mainMinified": "dist/cactus-cmd-api-server.node.umd.min.js", "browser": "dist/cactus-cmd-api-server.web.umd.js", "browserMinified": "dist/cactus-cmd-api-server.web.umd.min.js",
To Reproduce
Clone the project, open the file ./packages/cactus-cmd-api-server/package.json and observe the contents as explained above.
./packages/cactus-cmd-api-server/package.json
Expected behavior
./packages/cactus-cmd-api-server/package.json declares the bundle names correctly.
Hyperledger Cactus release version or commit (git rev-parse --short HEAD):
v0.2.0
The text was updated successfully, but these errors were encountered:
fix(cmd-api-server): bundle name typos
f604dc6
Fixes hyperledger-cacti#376 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
711ad71
Fixes #376 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
Merge pull request hyperledger-cacti#376 from sanvenDev/main
b6e9cb4
Fix Readme Instructions
petermetz
Successfully merging a pull request may close this issue.
Describe the bug
Currently the package.json declares the bundle names incorrectly (copy paste mistake most likely)
The correct values would be:
To Reproduce
Clone the project, open the file
./packages/cactus-cmd-api-server/package.json
and observe the contents as explained above.
Expected behavior
./packages/cactus-cmd-api-server/package.json
declares the bundle names correctly.Hyperledger Cactus release version or commit (git rev-parse --short HEAD):
v0.2.0
The text was updated successfully, but these errors were encountered: