@spatulox/simplediscordbot 1.0.42 → 1.1.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/dist/index.js +3 -5
- package/dist/index.mjs +3 -5
- package/package.json +3 -5
package/dist/index.js
CHANGED
|
@@ -2524,7 +2524,7 @@ var SimpleMutex = class {
|
|
|
2524
2524
|
// package.json
|
|
2525
2525
|
var package_default = {
|
|
2526
2526
|
name: "@spatulox/simplediscordbot",
|
|
2527
|
-
version: "1.0
|
|
2527
|
+
version: "1.1.0",
|
|
2528
2528
|
author: "Spatulox",
|
|
2529
2529
|
description: "Simple discord bot framework to set up a bot under 30 secondes",
|
|
2530
2530
|
exports: {
|
|
@@ -2538,11 +2538,9 @@ var package_default = {
|
|
|
2538
2538
|
patch: "npm run build && npm version patch",
|
|
2539
2539
|
minor: "npm run build && npm version minor",
|
|
2540
2540
|
major: "npm run build && npm version major",
|
|
2541
|
-
|
|
2542
|
-
"
|
|
2543
|
-
pub: "npm run patch && npm publish --access public",
|
|
2541
|
+
"pub:patch": "npm run patch && npm publish --access public",
|
|
2542
|
+
"pub:minor": "npm run minor && npm publish --access public",
|
|
2544
2543
|
"pub:major": "npm run major && npm publish --access public",
|
|
2545
|
-
"pub:alpha": "npm run premajor:alpha && npm publish --tag alpha --access public",
|
|
2546
2544
|
"test-pack": "npm run patch && npm publish --access public",
|
|
2547
2545
|
dev: "nodemon --exec tsx src/test/index.ts"
|
|
2548
2546
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -2502,7 +2502,7 @@ var SimpleMutex = class {
|
|
|
2502
2502
|
// package.json
|
|
2503
2503
|
var package_default = {
|
|
2504
2504
|
name: "@spatulox/simplediscordbot",
|
|
2505
|
-
version: "1.0
|
|
2505
|
+
version: "1.1.0",
|
|
2506
2506
|
author: "Spatulox",
|
|
2507
2507
|
description: "Simple discord bot framework to set up a bot under 30 secondes",
|
|
2508
2508
|
exports: {
|
|
@@ -2516,11 +2516,9 @@ var package_default = {
|
|
|
2516
2516
|
patch: "npm run build && npm version patch",
|
|
2517
2517
|
minor: "npm run build && npm version minor",
|
|
2518
2518
|
major: "npm run build && npm version major",
|
|
2519
|
-
|
|
2520
|
-
"
|
|
2521
|
-
pub: "npm run patch && npm publish --access public",
|
|
2519
|
+
"pub:patch": "npm run patch && npm publish --access public",
|
|
2520
|
+
"pub:minor": "npm run minor && npm publish --access public",
|
|
2522
2521
|
"pub:major": "npm run major && npm publish --access public",
|
|
2523
|
-
"pub:alpha": "npm run premajor:alpha && npm publish --tag alpha --access public",
|
|
2524
2522
|
"test-pack": "npm run patch && npm publish --access public",
|
|
2525
2523
|
dev: "nodemon --exec tsx src/test/index.ts"
|
|
2526
2524
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spatulox/simplediscordbot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"author": "Spatulox",
|
|
5
5
|
"description": "Simple discord bot framework to set up a bot under 30 secondes",
|
|
6
6
|
"exports": {
|
|
@@ -14,11 +14,9 @@
|
|
|
14
14
|
"patch": "npm run build && npm version patch",
|
|
15
15
|
"minor": "npm run build && npm version minor",
|
|
16
16
|
"major": "npm run build && npm version major",
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"pub": "npm run patch && npm publish --access public",
|
|
17
|
+
"pub:patch": "npm run patch && npm publish --access public",
|
|
18
|
+
"pub:minor": "npm run minor && npm publish --access public",
|
|
20
19
|
"pub:major": "npm run major && npm publish --access public",
|
|
21
|
-
"pub:alpha": "npm run premajor:alpha && npm publish --tag alpha --access public",
|
|
22
20
|
"test-pack": "npm run patch && npm publish --access public",
|
|
23
21
|
"dev": "nodemon --exec tsx src/test/index.ts"
|
|
24
22
|
},
|