@fedeghe/pangjs 0.0.10 → 0.0.11
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/.github/workflows/codecov.yml +31 -0
- package/.yarn/install-state.gz +0 -0
- package/README.md +2 -2
- package/dist/index.js +1 -1
- package/package.json +3 -12
- package/.coveralls.yml +0 -2
- package/.travis.yml +0 -7
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: Run tests and upload coverage
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
test:
|
|
8
|
+
name: Run tests and collect coverage
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
steps:
|
|
11
|
+
- name: Checkout
|
|
12
|
+
uses: actions/checkout@v4
|
|
13
|
+
with:
|
|
14
|
+
fetch-depth: 2
|
|
15
|
+
|
|
16
|
+
- name: Set up Node
|
|
17
|
+
uses: actions/setup-node@v4
|
|
18
|
+
|
|
19
|
+
- name: Install dependencies
|
|
20
|
+
run: npm install
|
|
21
|
+
|
|
22
|
+
- name: Build
|
|
23
|
+
run: npm run build
|
|
24
|
+
|
|
25
|
+
- name: Run tests
|
|
26
|
+
run: npm run cover
|
|
27
|
+
|
|
28
|
+
- name: Upload results to Codecov
|
|
29
|
+
uses: codecov/codecov-action@v5
|
|
30
|
+
with:
|
|
31
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
Binary file
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# PANGjs (0.0.
|
|
1
|
+
# PANGjs (0.0.11)
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
[](https://codecov.io/gh/fedeghe/pangjs)
|
|
6
6
|
|
|
7
7
|
# Simple asynchronous state manager
|
|
8
8
|
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fedeghe/pangjs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"author": "fedeghe <fedeghe@gmail.com>",
|
|
6
6
|
"description": "Lightweight asynchronous state manager",
|
|
@@ -20,23 +20,14 @@
|
|
|
20
20
|
"dev": "malta source/buildev.json",
|
|
21
21
|
"test": "jest --coverage --rootDir=test",
|
|
22
22
|
"watch": "jest --watch --coverage --rootDir=test",
|
|
23
|
-
"cover": "jest --coverage --rootDir=test --coverageReporters=text"
|
|
24
|
-
"coveralls": "jest --coverage --rootDir=test --coverageReporters=text && cat ./test/coverage/lcov.info | coveralls"
|
|
23
|
+
"cover": "jest --coverage --rootDir=test --coverageReporters=text"
|
|
25
24
|
},
|
|
26
25
|
"devDependencies": {
|
|
27
|
-
"coveralls": "^3.1.1",
|
|
28
26
|
"eslint": "^9.17.0",
|
|
29
|
-
"eslint-config-standard": "^17.1.0",
|
|
30
|
-
"eslint-plugin-import": "^2.31.0",
|
|
31
|
-
"eslint-plugin-node": "^11.1.0",
|
|
32
|
-
"eslint-plugin-promise": "^7.2.1",
|
|
33
|
-
"eslint-plugin-standard": "^5.0.0",
|
|
34
27
|
"jest": "^29.7.0",
|
|
35
28
|
"malta": "^4.1.41",
|
|
36
29
|
"malta-header-comment": "^1.0.12",
|
|
37
|
-
"malta-js-uglify": "^1.0.13"
|
|
38
|
-
"mocha-lcov-reporter": "^1.3.0",
|
|
39
|
-
"nyc": "^17.1.0"
|
|
30
|
+
"malta-js-uglify": "^1.0.13"
|
|
40
31
|
},
|
|
41
32
|
"jest": {
|
|
42
33
|
"collectCoverage": true,
|
package/.coveralls.yml
DELETED