@sivrad/matrix-collection-tools
v1.0.24
Published
Collection CI/CD.
Readme
Installation
yarn add -D @sivrad/matrix-collection-toolsUsage
Lint the Collection
This will compare files that match:
./collection.json./types/*.json
matrix lintOr using a script and yarn:
"scripts": {
"lint": "yarn matrix lint"
}Build the Collection Package
This will build the files in ./src/.
matrix buildMake a new Type
You can quickly create a new type with this command.
matrix mk-type YourTypeNameBuild
The main function of this the collection tools is the Build functionality.
This will create all the files for the collection package.
These files include:
./src/./src/index.ts./src/collection.ts./src/types./src/types/index.ts./src/types/YourTypeName.ts
