Package Exports
- @textlint/script-compiler
- @textlint/script-compiler/lib/index.js
- @textlint/script-compiler/module/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@textlint/script-compiler) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@textlint/script-compiler
textlint compiler tool
Install
Install with npm:
npm install @textlint/script-compiler
Usage
Usage
$ textlint-script-compiler
Options
--cwd [path:String] current working directory
--textlintrc [path:String] path to .textlintrc file.
Default: .textlintrc.{json,yaml,js}
--output-dir [path:String] output file path that is written of reported result.
--mode [String] build mode: "production" or "development"
Metadata Options
Metadata is inferred from package.json by default.
If you want to set metadata by manually, please use these flags.
--metadataName [String] generated script name
--metadataNamespace [String] generated script namespace
--metadataHomepage [String] generated script homepage url
--metadataVersion [String] generated script version
Examples
$ textlint-script-compiler --output-dir ./dist --metadataName "test" --metadataNamespace "https://example.com"
Demo
yarn run compile:textlint
yarn dev
Command
const worker = new Worker('textlint.js');
worker.addEventListener('message', function (event) {
if (event.data.command === "init") {
// override user config
worker.postMessage({
command: "merge-config",
textlintrc: {
"rules": {
"preset-ja-technical-writing": {
"sentence-length": {
"max": 5
}
}
}
},
});
const id = crypto.randomUUID();
setTimeout(() => {
// lint
worker.postMessage({
id,
command: "lint",
text: "お刺身が食べれない",
ext: ".md"
})
})
} else if (event.data.command === "lint:result") {
// receive lint result
console.log(event.data.result);
console.timeEnd("lint")
}
});
Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test
:
npm test
Contributing
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
Author
License
MIT © azu