errlens 1.0.0 → 1.0.2
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/package.json +3 -3
- package/.github/dependabot.yml +0 -21
- package/.github/workflow/nodejs.yml +0 -23
- package/assets/errlens.png +0 -0
- package/assets/terminal.png +0 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "errlens",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A CLI tool that explains JavaScript/Node.js errors in plain English.",
|
|
5
5
|
"main": "./bin/index.js",
|
|
6
6
|
"author": "BeyteFlow (https://github.com/BeyteFlow)",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"bin": {
|
|
9
|
-
"errlens": "
|
|
9
|
+
"errlens": "bin/index.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"test": "node --test test/**/*.test.js"
|
|
@@ -26,4 +26,4 @@
|
|
|
26
26
|
"fuse.js": "^7.0.0",
|
|
27
27
|
"ora": "^5.4.1"
|
|
28
28
|
}
|
|
29
|
-
}
|
|
29
|
+
}
|
package/.github/dependabot.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
version: 2
|
|
2
|
-
updates:
|
|
3
|
-
# Maintain dependencies for npm
|
|
4
|
-
- package-ecosystem: "npm"
|
|
5
|
-
directory: "/" # Location of package.json
|
|
6
|
-
schedule:
|
|
7
|
-
interval: "weekly"
|
|
8
|
-
day: "monday"
|
|
9
|
-
open-pull-requests-limit: 5
|
|
10
|
-
# Label PRs so they are easy to filter
|
|
11
|
-
labels:
|
|
12
|
-
- "dependencies"
|
|
13
|
-
- "javascript"
|
|
14
|
-
|
|
15
|
-
# Maintain GitHub Actions
|
|
16
|
-
- package-ecosystem: "github-actions"
|
|
17
|
-
directory: "/"
|
|
18
|
-
schedule:
|
|
19
|
-
interval: "weekly"
|
|
20
|
-
labels:
|
|
21
|
-
- "ci/cd"
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# .github/workflows/nodejs.yml
|
|
2
|
-
name: Node.js CI
|
|
3
|
-
|
|
4
|
-
on:
|
|
5
|
-
push:
|
|
6
|
-
branches: [ main ]
|
|
7
|
-
pull_request:
|
|
8
|
-
branches: [ main ]
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
build:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v3
|
|
16
|
-
- name: Use Node.js 18
|
|
17
|
-
uses: actions/setup-node@v3
|
|
18
|
-
with:
|
|
19
|
-
node-version: 18
|
|
20
|
-
|
|
21
|
-
- run: npm install
|
|
22
|
-
- run: npm run lint || echo "Skipping lint if not set"
|
|
23
|
-
- run: npm test || echo "Skipping test if not set"
|
package/assets/errlens.png
DELETED
|
Binary file
|
package/assets/terminal.png
DELETED
|
Binary file
|