@lwmacct/260701-challenge-relay-sdk 0.0.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/Taskfile.yml +26 -0
- package/index.js +1 -0
- package/package.json +21 -0
package/Taskfile.yml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Taskfile.yml
|
|
2
|
+
# https://taskfile.dev
|
|
3
|
+
# To enable experimental features
|
|
4
|
+
# export TASK_X_FEATURE=1
|
|
5
|
+
# export TASK_X_REMOTE_TASKFILES=1
|
|
6
|
+
# https://taskfile.dev/docs/experiments/remote-taskfiles
|
|
7
|
+
|
|
8
|
+
version: "3"
|
|
9
|
+
dotenv: [".env", ".env.example", "{{.HOME}}/.env"]
|
|
10
|
+
|
|
11
|
+
vars:
|
|
12
|
+
TASK_REMOTE: "github.com/lwmacct/251207-task-remote.git/"
|
|
13
|
+
|
|
14
|
+
includes:
|
|
15
|
+
env:
|
|
16
|
+
taskfile: https://{{.TASK_REMOTE}}/.task/env.yml?ref=main
|
|
17
|
+
optional: true
|
|
18
|
+
flatten: true
|
|
19
|
+
|
|
20
|
+
git:
|
|
21
|
+
taskfile: https://{{.TASK_REMOTE}}/.task/git.yml?ref=main
|
|
22
|
+
optional: true
|
|
23
|
+
|
|
24
|
+
cmd:
|
|
25
|
+
taskfile: .task/cmd.yml
|
|
26
|
+
optional: true
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = {}
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@lwmacct/260701-challenge-relay-sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/lwmacct/260701-challenge-relay-sdk.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [],
|
|
14
|
+
"author": "",
|
|
15
|
+
"license": "ISC",
|
|
16
|
+
"type": "commonjs",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/lwmacct/260701-challenge-relay-sdk/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/lwmacct/260701-challenge-relay-sdk#readme"
|
|
21
|
+
}
|