wyvrnpm 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wyvrnpm",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A simple, static-hosting-compatible C++ package manager",
5
5
  "keywords": [
6
6
  "c++",
package/src/download.js CHANGED
@@ -59,6 +59,8 @@ async function tryDownloadFromSources(
59
59
  const candidates = [
60
60
  `${base}/${platform}/${name}/${version}/wyvrn.zip`,
61
61
  `${base}/${platform}/${name}/${version}/razer.zip`,
62
+ `${base}/common/${name}/${version}/wyvrn.zip`,
63
+ `${base}/common/${name}/${version}/razer.zip`,
62
64
  ];
63
65
  for (const url of candidates) {
64
66
  try {
package/src/resolve.js CHANGED
@@ -44,6 +44,8 @@ async function fetchPackageManifest(name, version, packageSources, platform, htt
44
44
  const candidates = [
45
45
  `${base}/${platform}/${name}/${version}/wyvrn.json`,
46
46
  `${base}/${platform}/${name}/${version}/razer.json`,
47
+ `${base}/common/${name}/${version}/wyvrn.json`,
48
+ `${base}/common/${name}/${version}/razer.json`,
47
49
  ];
48
50
  for (const url of candidates) {
49
51
  try {