@sapphire/stopwatch 1.5.1-pr-434.9fcf7df.0 β 1.6.0-pr-434.34ba851.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/README.md +7 -0
- package/dist/index.global.js +1 -2
- package/dist/index.js +1 -2
- package/dist/index.mjs +1 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -135,6 +135,13 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
135
135
|
<td align="center"><a href="https://enes.ovh/"><img src="https://avatars.githubusercontent.com/u/61084101?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Enes GenΓ§</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=enxg" title="Code">π»</a></td>
|
|
136
136
|
<td align="center"><a href="https://github.com/muchnameless"><img src="https://avatars.githubusercontent.com/u/12682826?v=4?s=100" width="100px;" alt=""/><br /><sub><b>muchnameless</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=muchnameless" title="Code">π»</a></td>
|
|
137
137
|
<td align="center"><a href="https://github.com/r-priyam"><img src="https://avatars.githubusercontent.com/u/50884372?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Priyam</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=r-priyam" title="Code">π»</a></td>
|
|
138
|
+
<td align="center"><a href="https://github.com/legendhimslef"><img src="https://avatars.githubusercontent.com/u/69213593?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Voxelli</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=legendhimslef" title="Code">π»</a></td>
|
|
139
|
+
<td align="center"><a href="https://github.com/CitTheDev"><img src="https://avatars.githubusercontent.com/u/94020875?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Cit The Dev</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=CitTheDev" title="Code">π»</a></td>
|
|
140
|
+
</tr>
|
|
141
|
+
<tr>
|
|
142
|
+
<td align="center"><a href="https://www.goestav.com/"><img src="https://avatars.githubusercontent.com/u/27970303?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Goestav</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=goestav" title="Code">π»</a></td>
|
|
143
|
+
<td align="center"><a href="https://github.com/didinele"><img src="https://avatars.githubusercontent.com/u/27137376?v=4?s=100" width="100px;" alt=""/><br /><sub><b>DD</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=didinele" title="Code">π»</a></td>
|
|
144
|
+
<td align="center"><a href="https://steamcommunity.com/id/06000208"><img src="https://avatars.githubusercontent.com/u/52764066?v=4?s=100" width="100px;" alt=""/><br /><sub><b>amber</b></sub></a><br /><a href="https://github.com/sapphiredev/utilities/commits?author=06000208" title="Code">π»</a></td>
|
|
138
145
|
</tr>
|
|
139
146
|
</table>
|
|
140
147
|
|
package/dist/index.global.js
CHANGED
|
@@ -81,9 +81,8 @@ var SapphireStopwatch = (function (exports) {
|
|
|
81
81
|
|
|
82
82
|
exports.Stopwatch = Stopwatch;
|
|
83
83
|
|
|
84
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
85
|
-
|
|
86
84
|
return exports;
|
|
87
85
|
|
|
88
86
|
})({});
|
|
87
|
+
//# sourceMappingURL=out.js.map
|
|
89
88
|
//# sourceMappingURL=index.global.js.map
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
-
|
|
5
3
|
var __defProp = Object.defineProperty;
|
|
6
4
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
7
5
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
@@ -81,4 +79,5 @@ _start = new WeakMap();
|
|
|
81
79
|
_end = new WeakMap();
|
|
82
80
|
|
|
83
81
|
exports.Stopwatch = Stopwatch;
|
|
82
|
+
//# sourceMappingURL=out.js.map
|
|
84
83
|
//# sourceMappingURL=index.js.map
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sapphire/stopwatch",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0-pr-434.34ba851.0",
|
|
4
4
|
"description": "Accurately measure passing time.",
|
|
5
5
|
"author": "@sapphire",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"check-update": "cliff-jumper --dry-run"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"tslib": "^2.4.
|
|
27
|
+
"tslib": "^2.4.1"
|
|
28
28
|
},
|
|
29
29
|
"repository": {
|
|
30
30
|
"type": "git",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@favware/cliff-jumper": "^1.
|
|
61
|
-
"@types/jsdom": "^20.0.
|
|
62
|
-
"@vitest/coverage-c8": "^0.
|
|
63
|
-
"jsdom": "^20.0.
|
|
64
|
-
"tsup": "^6.
|
|
65
|
-
"typedoc": "^0.23.
|
|
66
|
-
"typedoc-json-parser": "^
|
|
67
|
-
"typescript": "^4.
|
|
68
|
-
"vitest": "^0.
|
|
60
|
+
"@favware/cliff-jumper": "^1.9.0",
|
|
61
|
+
"@types/jsdom": "^20.0.1",
|
|
62
|
+
"@vitest/coverage-c8": "^0.26.2",
|
|
63
|
+
"jsdom": "^20.0.3",
|
|
64
|
+
"tsup": "^6.5.0",
|
|
65
|
+
"typedoc": "^0.23.23",
|
|
66
|
+
"typedoc-json-parser": "^7.0.2",
|
|
67
|
+
"typescript": "^4.9.4",
|
|
68
|
+
"vitest": "^0.26.2"
|
|
69
69
|
}
|
|
70
70
|
}
|