forked from confused-Techie/atom-backend
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #260 from pulsar-edit/use-refs-to-collect-package-…
…data Collect package data from specific tags
- Loading branch information
Showing
12 changed files
with
799 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "d-pulsar-package", | ||
"version": "1.0.0", | ||
"description": "A new package for stuff", | ||
"main": "./lib/main.js", | ||
"engines": { | ||
"atom": "*" | ||
}, | ||
"repository": "https://github.com/confused-Techie/d-pulsar-package", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = [ | ||
{ | ||
name: "v1.0.0", | ||
tarball_url: "https://api.github.com/repos/confused-Techie/d-pulsar-package/tarball/refs/tags/v1.0.0", | ||
commit: { | ||
sha: "09f", | ||
url: "https://api.github.com/repos/confused-Techie/d-pulsar-package/commits/09f" | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
module.exports = { | ||
name: "d-pulsar-package", | ||
owner: "confused-Techie", | ||
readme: expect.stringContaining("I'm a readme!"), | ||
metadata: { | ||
main: "./lib/main.js", | ||
name: "d-pulsar-package", | ||
engines: { atom: "*" }, | ||
license: "MIT", | ||
version: "2.0.0", | ||
repository: "https://github.com/confused-Techie/d-pulsar-package", | ||
description: "An old package for stuff" | ||
}, | ||
releases: { latest: "2.0.0" }, | ||
versions: { | ||
"2.0.0": { | ||
dist: { | ||
tarball: expect.stringContaining( | ||
"/api/packages/d-pulsar-package/versions/2.0.0/tarball" | ||
), | ||
}, | ||
main: "./lib/main.js", | ||
name: "d-pulsar-package", | ||
license: "MIT", | ||
version: "2.0.0", | ||
repository: "https://github.com/confused-Techie/d-pulsar-package", | ||
description: "An old package for stuff" | ||
}, | ||
"1.0.0": { | ||
dist: { | ||
tarball: expect.stringContaining( | ||
"/api/packages/d-pulsar-package/versions/1.0.0/tarball" | ||
), | ||
}, | ||
main: "./lib/main.js", | ||
name: "d-pulsar-package", | ||
license: "MIT", | ||
version: "1.0.0", | ||
repository: "https://github.com/confused-Techie/d-pulsar-package", | ||
description: "A new package for stuff" | ||
} | ||
}, | ||
repository: { | ||
url: "https://github.com/confused-Techie/d-pulsar-package", | ||
type: "git" | ||
}, | ||
downloads: "0", | ||
stargazers_count: "0", | ||
badges: [{ title: "Made for Pulsar!", type: "success" }], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "d-pulsar-package", | ||
"version": "2.0.0", | ||
"description": "An old package for stuff", | ||
"main": "./lib/main.js", | ||
"engines": { | ||
"atom": "*" | ||
}, | ||
"repository": "https://github.com/confused-Techie/d-pulsar-package", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# d-pulsar-package | ||
|
||
I'm a readme! |
Oops, something went wrong.