@dk/jolly 0.1.1 → 0.1.3
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/agent.js +1 -2
- package/dist/bootstrap.js +1 -2
- package/dist/index.js +1 -2
- package/package.json +7 -2
- package/src/cli/agent.ts +1 -1
- package/src/cli/bootstrap.ts +1 -1
- package/src/cli/index.ts +1 -1
package/dist/agent.js
CHANGED
package/dist/bootstrap.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dk/jolly",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Saleor project bootstrapper and agent configurator",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,9 +10,14 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "bun build src/cli/index.ts --outdir=dist --target=node --external yargs --external dotenv && bun build src/cli/bootstrap.ts --outdir=dist --target=node --external yargs --external dotenv && bun build src/cli/agent.ts --outdir=dist --target=node --external yargs --external dotenv",
|
|
13
|
+
"prepublishOnly": "bun run build",
|
|
14
|
+
"jolly": "bun src/cli/index.ts",
|
|
13
15
|
"dev": "bun --watch src/cli/index.ts",
|
|
14
16
|
"test": "bun test",
|
|
15
|
-
"typecheck": "bun tsc --noEmit"
|
|
17
|
+
"typecheck": "bun tsc --noEmit",
|
|
18
|
+
"release": "npm version patch && npm publish",
|
|
19
|
+
"release:minor": "npm version minor && npm publish",
|
|
20
|
+
"release:major": "npm version major && npm publish"
|
|
16
21
|
},
|
|
17
22
|
"dependencies": {
|
|
18
23
|
"dotenv": "^17.4.0",
|
package/src/cli/agent.ts
CHANGED
package/src/cli/bootstrap.ts
CHANGED
package/src/cli/index.ts
CHANGED