@identity-js/identity 1.3.1 → 1.4.0

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,20 @@
1
+ name: 10xly Code Quality
2
+
3
+ on:
4
+ push:
5
+ branches: ["**"]
6
+ pull_request:
7
+ branches: ["**"]
8
+
9
+ jobs:
10
+ quality-check:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: actions/setup-node@v4
15
+ with:
16
+ node-version: "25"
17
+ - name: Install
18
+ run: npm install
19
+ - name: Run 10xly Lint
20
+ run: npx eslint . --max-warnings 0
@@ -0,0 +1,10 @@
1
+ name: smoke
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ smoke:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: pass
10
+ run: true
package/README.md CHANGED
@@ -40,7 +40,7 @@ console.log(identity("hello world")) // "hello world"
40
40
  Tests are written using **Mocha**.
41
41
 
42
42
  ### Prerequisites
43
- Clone this repository, cd into `packages/identity` and install dependencies and dev-dependencies.
43
+ Clone this repository and install dependencies and dev-dependencies.
44
44
 
45
45
  ### Running Tests
46
46
 
@@ -54,4 +54,4 @@ This will execute the tests to ensure the function works correctly across variou
54
54
 
55
55
  ## ✍️ License
56
56
 
57
- This project is licensed under the Unlicense.
57
+ This project is licensed under the Unlicense.
@@ -0,0 +1,3 @@
1
+ import config from "@10xly/eslint-config"
2
+
3
+ export default config