@aspruyt/xfg 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # xfg
2
2
 
3
- [![CI](https://github.com/anthony-spruyt/xfg/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/anthony-spruyt/xfg/actions/workflows/ci.yml)
3
+ [![CI](https://github.com/anthony-spruyt/xfg/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/anthony-spruyt/xfg/actions/workflows/ci.yaml)
4
4
  [![npm version](https://img.shields.io/npm/v/@aspruyt/xfg.svg)](https://www.npmjs.com/package/@aspruyt/xfg)
5
5
  [![npm downloads](https://img.shields.io/npm/dw/@aspruyt/xfg.svg)](https://www.npmjs.com/package/@aspruyt/xfg)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
@@ -62,7 +62,7 @@ xfg --config ./config.yaml
62
62
 
63
63
  - **Multi-File Sync** - Sync multiple config files in a single run
64
64
  - **Multi-Format Output** - JSON, YAML, or plain text based on filename extension
65
- - **Subdirectory Support** - Sync files to any path (e.g., `.github/workflows/ci.yml`)
65
+ - **Subdirectory Support** - Sync files to any path (e.g., `.github/workflows/ci.yaml`)
66
66
  - **Text Files** - Sync `.gitignore`, `.markdownlintignore`, etc. with string or lines array
67
67
  - **File References** - Use `@path/to/file` to load content from external template files
68
68
  - **Content Inheritance** - Define base config once, override per-repo as needed
@@ -583,7 +583,7 @@ Sync files to any subdirectory path - parent directories are created automatical
583
583
  ```yaml
584
584
  files:
585
585
  # GitHub Actions workflow
586
- ".github/workflows/ci.yml":
586
+ ".github/workflows/ci.yaml":
587
587
  content:
588
588
  name: CI
589
589
  on: [push, pull_request]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aspruyt/xfg",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool to sync JSON or YAML configuration files across multiple GitHub and Azure DevOps repositories",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",