@daiyam/artifact-lang-js 0.13.1 → 0.14.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,21 @@
1
+ diff --git a/packages/lang-js/variants/20/configs/.github/workflows/ci-master.yml b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-master.yml
2
+ index 7615a52..baccf99 100644
3
+ --- a/.github/workflows/ci-master.yml
4
+ +++ b/.github/workflows/ci-master.yml
5
+ @@ -1,4 +1,4 @@
6
+ -name: "CI - Master: Build & Lint"
7
+ +name: "CI - Master: Build, Test & Lint"
8
+
9
+ on:
10
+ push:
11
+ @@ -37,6 +37,10 @@ jobs:
12
+ run: |
13
+ npm run build
14
+
15
+ + - name: Test
16
+ + run: |
17
+ + npm run test
18
+ +
19
+ - name: Lint code
20
+ run: |
21
+ npm run lint:all
@@ -0,0 +1,21 @@
1
+ diff --git a/packages/lang-js/variants/20/configs/.github/workflows/ci-pr.yml b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-pr.yml
2
+ index ab5ad4d..baccf99 100644
3
+ --- a/packages/lang-js/variants/20/configs/.github/workflows/ci-pr.yml
4
+ +++ b/packages/lang-js/branches/[#all:test]/configs/.github/workflows/ci-pr.yml
5
+ @@ -1,4 +1,4 @@
6
+ -name: "CI - Pull Request: Build & Lint"
7
+ +name: "CI - Pull Request: Build, Test & Lint"
8
+
9
+ on:
10
+ pull_request:
11
+ @@ -37,6 +37,10 @@ jobs:
12
+ run: |
13
+ npm run build
14
+
15
+ + - name: Test
16
+ + run: |
17
+ + npm run test
18
+ +
19
+ - name: Lint code
20
+ run: |
21
+ npm run lint:all
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-lang-js",
3
- "version": "0.13.1",
3
+ "version": "0.14.0",
4
4
  "description": "The base configuration for my javascript projects",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "89f8a74f9d76cf6201ce9de3064c32d3a961b0a2"
34
+ "gitHead": "19805320925f3b643ce19109bb14768660059465"
35
35
  }
@@ -16,7 +16,7 @@ indent_size = 2
16
16
  indent_style = space
17
17
  indent_size = 4
18
18
 
19
- [*.patch]
19
+ [{*.diff,*.patch}]
20
20
  indent_style = space
21
21
  indent_size = 2
22
22
  trim_trailing_whitespace = false
@@ -1,4 +1,4 @@
1
- name: "CI - Master: Build, Test & Lint"
1
+ name: "CI - Master: Build & Lint"
2
2
 
3
3
  on:
4
4
  push:
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
16
  - name: Checkout code
17
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
+ uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
18
18
  with:
19
19
  fetch-depth: 0
20
20
  persist-credentials: false
@@ -37,10 +37,6 @@ jobs:
37
37
  run: |
38
38
  npm run build
39
39
 
40
- - name: Test
41
- run: |
42
- npm run test
43
-
44
40
  - name: Lint code
45
41
  run: |
46
42
  npm run lint:all
@@ -1,4 +1,4 @@
1
- name: "CI - Pull Request: Build, Test & Lint"
1
+ name: "CI - Pull Request: Build & Lint"
2
2
 
3
3
  on:
4
4
  pull_request:
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
16
  - name: Checkout code
17
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
+ uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
18
18
  with:
19
19
  fetch-depth: 0
20
20
  persist-credentials: false
@@ -37,10 +37,6 @@ jobs:
37
37
  run: |
38
38
  npm run build
39
39
 
40
- - name: Test
41
- run: |
42
- npm run test
43
-
44
40
  - name: Lint code
45
41
  run: |
46
42
  npm run lint:all
@@ -19,10 +19,5 @@
19
19
  "lint-staged": "16.4.0",
20
20
  "taze": "19.14.1"
21
21
  },
22
- "overrides": {
23
- "ajv": {
24
- "fast-uri": "3.1.2"
25
- }
26
- },
27
22
  "keywords": []
28
23
  }