Skip to content

Commit

Permalink
demo setup
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Jul 15, 2024
1 parent e16783f commit 344908f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/npm-ls_demo-results.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
fail-fast: false # gather all the results !
matrix:
subject:
- alternative-package-registry
- deps-from-git
# - alternative-package-registry
# - bundled-dependencies
# - dev-dependencies
# - juice-shop
Expand Down
5 changes: 5 additions & 0 deletions demo/deps-from-git/project/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/*
!/.gitignore
!/.npmrc
!/package.json
!/README.md
14 changes: 14 additions & 0 deletions demo/deps-from-git/project/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"private": true,
"name": "demo-deps-from-git",
"description": "demo: dependencies from git",
"version": "1.0.0",
"dependencies": {
"lib0": "git://github.com/CycloneDX/cyclonedx-javascript-library.git#v6.0.0",
"lib1": "git+https://github.com/CycloneDX/cyclonedx-javascript-library.git#semver:6.1.0",
"lib2": "git+ssh://github.com/CycloneDX/cyclonedx-javascript-library.git#v6.2.0",
"lib3": "git@github.com:CycloneDX/cyclonedx-javascript-library.git#v6.3.0",
"lib4": "github:CycloneDX/cyclonedx-javascript-library.git#v6.4.0",
"lib5": "CycloneDX/cyclonedx-javascript-library#v6.5.0"
}
}

0 comments on commit 344908f

Please sign in to comment.