Closed azu closed 5 years ago
This is beta release
You can try it:
npm install textlint-scripts@beta --save-dev
textlint-script build output compatible code for ES2015+. It means that output code is not work on IE11.
textlint-script build
Async/Await is supported by default.
textlint-script build inline Node fs calls with babel-plugin-static-fs for browser compatibility.
const fs = require("fs"); const path = require("path"); const text = fs.readFileSync(path.join(__dirname, "readme.md"), "utf-8");
will be
const fs = require("fs"); const path = require("path"); const text = "README CONTENT"
📝 You want to disable this behavior, set NO_INLINE env like NO_INLINE=1 textlint-scripts build.
NO_INLINE
NO_INLINE=1 textlint-scripts build
textlint-script build and textlint-script test support TypeScript. You can write textlint rule with TypeScript.
textlint-script test
If you want to write textlint rule with TypeScript, you can migrate it by following steps:
npm install textlint-scripts@beta --save-dev npm install --save-dev typescript ts-node @textlint/types @types/node
.js
.ts
@textlint/types provide types for textlint rule.
import { TextlintRuleModule, TextlintRuleReporter } from "@textlint/types"; export interface RuleOptions { foo: boolean; } const report: TextlintRuleReporter<RuleOptions> = function(context, options = {}) { const { Syntax, RuleError, report, getSource } = context; return { [Syntax.Str](node) { // ... } }; }; export default { linter: report, fixer: report } as TextlintRuleModule;
npm test
npm run build
Migration Scrips: @textlint/migrate-textlint-scripts-typescript
We also prepare migration script from textlint-script with JavaScript to textlint-script with TypeScript.
Migration script help you to do step 1.
# in you textlint rule project npx @textlint/migrate-textlint-scripts-typescript
For more details, see @textlint/migrate-textlint-scripts-typescript.
Examples:
Browser suppport test tool https://github.com/textlint/browser-run
We will release it at tommorow.
If you found an issue, please tell us.
Try to beta:
npm install -D textlint-scripts@3.0.0-beta.2
Release https://github.com/textlint/textlint-scripts/releases/tag/3.0.0 🎉
3.0.0 Beta-0
This is beta release
You can try it:
Summary
Breaking Changes 🔥
textlint-script build
output compatible code for ES2015+. It means that output code is not work on IE11.Support Async Function ⭐️
Async/Await is supported by default.
Inline static resources by default ⭐️
textlint-script build
inline Node fs calls with babel-plugin-static-fs for browser compatibility.will be
📝 You want to disable this behavior, set
NO_INLINE
env likeNO_INLINE=1 textlint-scripts build
.Support TypeScript 🌟
textlint-script build
andtextlint-script test
support TypeScript. You can write textlint rule with TypeScript.Migration Guide
If you want to write textlint rule with TypeScript, you can migrate it by following steps:
.js
to.ts
@textlint/types provide types for textlint rule.
npm test
andnpm run build
.Migration Scrips: @textlint/migrate-textlint-scripts-typescript
We also prepare migration script from textlint-script with JavaScript to textlint-script with TypeScript.
Migration script help you to do step 1.
For more details, see @textlint/migrate-textlint-scripts-typescript.
Examples: