@cluerise/tools 5.2.0 → 5.2.2

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.
@@ -297,10 +297,22 @@ export default defineConfig([
297
297
  // Enable all hidden directories
298
298
  '!.*/',
299
299
 
300
+ // Apollo
301
+ '**/apollo-ios-cli',
302
+
303
+ // Apple files and directories
304
+ '**/*.xcdatamodeld/',
305
+ '**/*.xcodeproj/',
306
+ '**/*.entitlements',
307
+ '**/*.plist',
308
+ '**/*.storekit',
309
+ '**/*.xcassets',
310
+ '**/*.xcstrings',
311
+
300
312
  // Archives
301
- '*.zip',
302
- '*.gz',
303
- '*.tgz',
313
+ '**/*.zip',
314
+ '**/*.gz',
315
+ '**/*.tgz',
304
316
 
305
317
  // Build
306
318
  '**/build/',
@@ -454,9 +454,8 @@ const main = async (args) => {
454
454
  if (process.env.GITHUB_ACTIONS === "true") {
455
455
  ActionsCore.setOutput("release", release);
456
456
  ActionsCore.setOutput(`release.${release.name}`, release);
457
- } else {
458
- console.log(JsonUtils.prettify(release));
459
457
  }
458
+ console.log(JsonUtils.prettify(release));
460
459
  return 0;
461
460
  }
462
461
  case "info": {
@@ -464,9 +463,8 @@ const main = async (args) => {
464
463
  if (process.env.GITHUB_ACTIONS === "true") {
465
464
  ActionsCore.setOutput("info", info);
466
465
  ActionsCore.setOutput(`info.${info.name}`, info);
467
- } else {
468
- console.log(JsonUtils.prettify(info));
469
466
  }
467
+ console.log(JsonUtils.prettify(info));
470
468
  return 0;
471
469
  }
472
470
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cluerise/tools",
3
- "version": "5.2.0",
3
+ "version": "5.2.2",
4
4
  "description": "Tools for maintaining TypeScript projects.",
5
5
  "author": "Branislav Holý <brano@holy.am>",
6
6
  "repository": "github:cluerise/tools",
@@ -22,14 +22,14 @@
22
22
  "@commitlint/config-conventional": "19.8.1",
23
23
  "@commitlint/load": "19.8.1",
24
24
  "@commitlint/types": "19.8.1",
25
- "@eslint/js": "9.31.0",
25
+ "@eslint/js": "9.32.0",
26
26
  "@eslint/json": "0.13.1",
27
27
  "@eslint/markdown": "7.1.0",
28
- "@html-eslint/eslint-plugin": "0.43.0",
28
+ "@html-eslint/eslint-plugin": "0.43.1",
29
29
  "@html-eslint/parser": "0.43.0",
30
30
  "@typescript-eslint/parser": "8.38.0",
31
31
  "conventional-changelog-conventionalcommits": "9.1.0",
32
- "eslint": "9.31.0",
32
+ "eslint": "9.32.0",
33
33
  "eslint-config-prettier": "10.1.8",
34
34
  "eslint-import-resolver-typescript": "4.4.4",
35
35
  "eslint-plugin-import": "2.32.0",
@@ -46,6 +46,6 @@
46
46
  "semver": "7.7.2",
47
47
  "smol-toml": "1.4.1",
48
48
  "typescript-eslint": "8.38.0",
49
- "zod": "4.0.5"
49
+ "zod": "4.0.14"
50
50
  }
51
51
  }