|
5 | 5 | * Contributors : Nil Null <[email protected]> |
6 | 6 | * Created On : <2023-09-01> |
7 | 7 | * Major Revision : 1 |
8 | | - * Last Modified : <2024-09-23> |
| 8 | + * Last Modified : <2024-09-29> |
9 | 9 | * ------------------------------------------------------------*/ |
10 | 10 |
|
11 | 11 | /* Begin Target Matrix */ |
12 | 12 | #define t(a) (const char*)(a) |
13 | 13 | static const char |
14 | 14 | *pl_ruby [] = {"gem", "ruby", "rb", "rubygem", "rubygems", "bundler", NULL, t(&pl_ruby_target)}, |
15 | | -*pl_python[] = {"python", "pypi", "py", NULL, t(&pl_python_target)}, |
16 | | - *pl_python_pip[] = {"pip", NULL, t(&pl_python_pip_target)}, |
17 | | - *pl_python_poetry[] = {"poetry", NULL, t(&pl_python_poetry_target)}, |
18 | | - *pl_python_pdm[] = {"pdm", NULL, t(&pl_python_pdm_target)}, |
19 | | - |
20 | | -*pl_nodejs[] = {"node", "nodejs", NULL, t(&pl_nodejs_target)}, |
21 | | - *pl_nodejs_npm[] = {"npm", NULL, t(&pl_nodejs_npm_target)}, |
22 | | - *pl_nodejs_yarn[] = {"yarn", NULL, t(&pl_nodejs_yarn_target)}, |
23 | | - *pl_nodejs_pnpm[] = {"pnpm", NULL, t(&pl_nodejs_pnpm_target)}, |
24 | | -*pl_nodejs_nvm[] = {"nvm", NULL, t(&pl_nodejs_nvm_target)}, |
25 | | - |
26 | | -*pl_perl [] = {"perl", "cpan", NULL, t(&pl_perl_target)}, |
27 | | -*pl_php [] = {"php", "composer", NULL, t(&pl_php_target)}, |
28 | | -*pl_lua [] = {"lua", "luarocks", NULL, t(&pl_lua_target)}, |
29 | | -*pl_go [] = {"go", "golang", "goproxy", NULL, t(&pl_go_target)} , |
30 | | -*pl_rust [] = {"rust", "cargo", "crate", "crates", NULL, t(&pl_rust_target)}, |
31 | | -*pl_java [] = {"java", "maven", "mvn", "gradle", NULL, t(&pl_java_target)}, |
32 | | -*pl_clojure[]= {"clojure","clojars","cloj", "lein", "leiningen", NULL, t(&pl_clojure_target)}, |
33 | | - |
34 | | -*pl_dart [] = {"dart", "pub", NULL, t(&pl_dart_target)}, |
35 | | -*pl_dart_flutter [] = {"flutter",NULL, t(&pl_dart_flutter_target)}, |
36 | | - |
37 | | -*pl_nuget[] = {"nuget", "net", ".net", "dotnet", NULL, t(&pl_nuget_target)}, |
38 | | -*pl_haskell[]= {"haskell", "cabal", "stack", "hackage", NULL, t(&pl_haskell_target)}, |
39 | | -*pl_ocaml[] = {"ocaml", "opam", NULL, t(&pl_ocaml_target)}, |
40 | | -*pl_r [] = {"cran", "r", NULL, t(&pl_r_target)}, |
41 | | -*pl_julia [] = {"julia", NULL, t(&pl_julia_target)}, |
| 15 | + |
| 16 | +*pl_python[] = {"python", "pypi", "py", NULL, t(&pl_python_target)}, |
| 17 | + *pl_python_pip[] = {"pip", NULL, t(&pl_python_pip_target)}, |
| 18 | + *pl_python_poetry[] = {"poetry", NULL, t(&pl_python_poetry_target)}, |
| 19 | + *pl_python_pdm[] = {"pdm", NULL, t(&pl_python_pdm_target)}, |
| 20 | + |
| 21 | +*pl_nodejs[] = {"node", "nodejs", NULL, t(&pl_nodejs_target)}, |
| 22 | +*pl_nodejs_bun[] = {"bun", NULL, t(&pl_nodejs_bun_target)}, |
| 23 | + *pl_nodejs_npm[] = {"npm", NULL, t(&pl_nodejs_npm_target)}, |
| 24 | + *pl_nodejs_yarn[] = {"yarn", NULL, t(&pl_nodejs_yarn_target)}, |
| 25 | + *pl_nodejs_pnpm[] = {"pnpm", NULL, t(&pl_nodejs_pnpm_target)}, |
| 26 | +*pl_nodejs_nvm[] = {"nvm", NULL, t(&pl_nodejs_nvm_target)}, |
| 27 | + |
| 28 | +*pl_perl [] = {"perl", "cpan", NULL, t(&pl_perl_target)}, |
| 29 | +*pl_php [] = {"php", "composer", NULL, t(&pl_php_target)}, |
| 30 | +*pl_lua [] = {"lua", "luarocks", NULL, t(&pl_lua_target)}, |
| 31 | +*pl_go [] = {"go", "golang", "goproxy", NULL, t(&pl_go_target)} , |
| 32 | +*pl_rust [] = {"rust", "cargo", "crate", "crates", NULL, t(&pl_rust_target)}, |
| 33 | +*pl_java [] = {"java", "maven", "mvn", "gradle", NULL, t(&pl_java_target)}, |
| 34 | +*pl_clojure[]= {"clojure","clojars","cloj", "lein", NULL, t(&pl_clojure_target)}, |
| 35 | + |
| 36 | +*pl_dart [] = {"dart", "pub", NULL, t(&pl_dart_target)}, |
| 37 | +*pl_dart_flutter [] = {"flutter", NULL, t(&pl_dart_flutter_target)}, |
| 38 | + |
| 39 | +*pl_nuget[] = {"nuget", "net", ".net", "dotnet", NULL, t(&pl_nuget_target)}, |
| 40 | +*pl_haskell[]= {"haskell", "cabal", "stack", "hackage", NULL, t(&pl_haskell_target)}, |
| 41 | +*pl_ocaml[] = {"ocaml", "opam", NULL, t(&pl_ocaml_target)}, |
| 42 | +*pl_r [] = {"cran", "r", NULL, t(&pl_r_target)}, |
| 43 | +*pl_julia [] = {"julia", NULL, t(&pl_julia_target)}, |
42 | 44 | **pl_packagers[] = |
43 | 45 | { |
44 | 46 | pl_ruby, |
45 | 47 | pl_python, pl_python_pip, pl_python_poetry, pl_python_pdm, |
46 | | - pl_nodejs, pl_nodejs_npm, pl_nodejs_pnpm, pl_nodejs_yarn, |
| 48 | + pl_nodejs, pl_nodejs_bun, |
| 49 | + pl_nodejs_npm, pl_nodejs_pnpm, pl_nodejs_yarn, |
47 | 50 | pl_nodejs_nvm, |
48 | 51 | pl_perl, pl_php, |
49 | 52 | pl_lua, |
|
0 commit comments