@daiyam/artifact-lang-ts 0.8.1 → 0.9.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.
package/.artifactrc.yml CHANGED
@@ -1,12 +1,16 @@
1
- $schema: https://raw.githubusercontent.com/zokugun/artifact/v0.6.0/schemas/v1/package.json
1
+ $schema: https://raw.githubusercontent.com/zokugun/artifact/v0.9.0/schemas/v2/package.json
2
2
 
3
- update:
4
- .xo-config.json:
3
+ journeys:
4
+ - name: xo
5
+ travels:
6
+ - path: .xo-config.json
5
7
  route:
6
- json:
8
+ mapSort:
7
9
  compose:
8
10
  ignores: listConcat
9
11
  overrides: listConcat
10
12
  plugins: listConcat
11
- rules: [mapConcat, mapSort]
13
+ rules:
14
+ - mapConcat
15
+ - mapSort
12
16
  $$default: overwrite
@@ -81,6 +81,12 @@
81
81
  "always"
82
82
  ],
83
83
  "@typescript-eslint/parameter-properties": "off",
84
+ "@typescript-eslint/prefer-nullish-coalescing": [
85
+ "error",
86
+ {
87
+ "ignoreConditionalTests": true
88
+ }
89
+ ],
84
90
  "@typescript-eslint/prefer-promise-reject-errors": "off",
85
91
  "@typescript-eslint/return-await": "off",
86
92
  "arrow-parens": [
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "scripts": {
3
3
  "clean": "rimraf lib",
4
+ "compile:src": "tsc -p src",
4
5
  "lint": "xo",
5
6
  "lint:all": "true && npm run lint",
6
7
  "lint:fix": "xo --fix"
7
8
  },
8
9
  "devDependencies": {
10
+ "rimraf": "6.1.3",
9
11
  "typescript": "5.9.3",
10
12
  "xo": "0.60.0"
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-lang-ts",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "The configuration for my typescript projects",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "5a18ffb1511899975f5e818e1c53587f7a632b47"
34
+ "gitHead": "1fd9bedb284bd66dbc50e8d749316fb5a949455d"
35
35
  }