@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.
@@ -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.10)
1
+ # PANGjs (0.0.11)
2
2
 
3
3
  ![alt text](https://github.com/fedeghe/pangjs/blob/main/pangjs.png?raw=true "Pang js")
4
4
 
5
- [![Coverage Status](https://coveralls.io/repos/github/fedeghe/pangjs/badge.svg?branch=main)](https://coveralls.io/github/fedeghe/pangjs?branch=main)
5
+ [![codecov](https://codecov.io/gh/fedeghe/pangjs/graph/badge.svg?token=2VQ632MML1)](https://codecov.io/gh/fedeghe/pangjs)
6
6
 
7
7
  # Simple asynchronous state manager
8
8
 
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
  /*
3
3
  PANGjs
4
- v. 0.0.10
4
+ v. 0.0.11
5
5
 
6
6
  Size: ~3.93KB
7
7
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fedeghe/pangjs",
3
- "version": "0.0.10",
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
@@ -1,2 +0,0 @@
1
- service_name: travis
2
- repo_token: s70zTJdyYdnFJD63dVSg9iCovgQ80azIz
package/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- install: yarn
2
- language: node_js
3
- script: yarn test
4
- after_success:
5
- - yarn coveralls
6
- node_js:
7
- - "10.12.0"