Skip to content

itoxdls/iyml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iyml

Node

To include yml in Node, first install with npm.

$ npm install iyml

How to use

Add in your package.json the following line to run the script

$ node node_modules/iyml/index.js <path> <dest>
{
  "name": "example",
  "version": "1.0.0",
  "description": "",
  "scripts": {
    "iyml": "node node_modules/iyml/index.js example/example.yml example/modules.yml"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "iyml": "^1.0.3"
  }
}

Example

category.yml

category:
  name: Category

user.yml

user:
  name: User

Main file example.yml

include: user.yml
include: category.yml

Run iyml

$ npm run iyml

Output File modules.yml

user:
  name: User
category:
  name: Category

About

Tool to import yml files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published