@quenty/roblox-api-dump 1.0.1-canary.4c04014.0 → 2.0.0
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/CHANGELOG.md +28 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [2.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/roblox-api-dump@1.1.0...@quenty/roblox-api-dump@2.0.0) (2022-03-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/roblox-api-dump
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 1.1.0 (2022-01-17)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Features
|
|
10
18
|
|
|
11
19
|
* Add RobloxApiDump package. This pulls in the API dump and allows querying of the API surface. ([c5bf337](https://github.com/Quenty/NevermoreEngine/commit/c5bf337d80016f47abac026f7ef0281aeb487e8d))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# v1.1.0 (Mon Jan 17 2022)
|
|
26
|
+
|
|
27
|
+
#### 🚀 Enhancement
|
|
28
|
+
|
|
29
|
+
- feat: Add UI converter Plugin [#247](https://github.com/Quenty/NevermoreEngine/pull/247) ([@Quenty](https://github.com/Quenty))
|
|
30
|
+
- feat: Add RobloxApiDump package. This pulls in the API dump and allows querying of the API surface. ([@Quenty](https://github.com/Quenty))
|
|
31
|
+
|
|
32
|
+
#### 🐛 Bug Fix
|
|
33
|
+
|
|
34
|
+
- docs: Fix docs and add more details ([@Quenty](https://github.com/Quenty))
|
|
35
|
+
|
|
36
|
+
#### Authors: 1
|
|
37
|
+
|
|
38
|
+
- James Onnen ([@Quenty](https://github.com/Quenty))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/roblox-api-dump",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Utility functions for grabbing the Roblox API from the web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/baseobject": "
|
|
30
|
-
"@quenty/httppromise": "
|
|
31
|
-
"@quenty/loader": "
|
|
32
|
-
"@quenty/promise": "
|
|
33
|
-
"@quenty/table": "2.1.1"
|
|
29
|
+
"@quenty/baseobject": "^4.0.0",
|
|
30
|
+
"@quenty/httppromise": "^4.0.0",
|
|
31
|
+
"@quenty/loader": "^4.0.0",
|
|
32
|
+
"@quenty/promise": "^4.0.0",
|
|
33
|
+
"@quenty/table": "^2.1.1"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "dd428cab58282c975a4c082957dc8f58e3186905"
|
|
39
39
|
}
|