@textlint/kernel
Advanced tools
Comparing version 2.0.5 to 2.0.6
@@ -6,2 +6,14 @@ # Change Log | ||
<a name="2.0.6"></a> | ||
## [2.0.6](https://github.com/textlint/textlint/compare/@textlint/kernel@2.0.5...@textlint/kernel@2.0.6) (2018-01-27) | ||
### Code Refactoring | ||
* **ast-traverse:** update usage of [@textlint](https://github.com/textlint)/ast-traverse ([133ab5a](https://github.com/textlint/textlint/commit/133ab5a)) | ||
* **plugin-markdown:** update usage of [@textlint](https://github.com/textlint)/textlint-plugin-markdown ([d34ee08](https://github.com/textlint/textlint/commit/d34ee08)) | ||
<a name="2.0.5"></a> | ||
@@ -8,0 +20,0 @@ ## [2.0.5](https://github.com/textlint/textlint/compare/@textlint/kernel@2.0.4...@textlint/kernel@2.0.5) (2018-01-18) |
@@ -14,3 +14,3 @@ // LICENSE : MIT | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var TraverseController = require("txt-ast-traverse").Controller; | ||
var TraverseController = require("@textlint/ast-traverse").Controller; | ||
var traverseController = new TraverseController(); | ||
@@ -17,0 +17,0 @@ var debug = require("debug")("textlint:core-task"); |
{ | ||
"name": "@textlint/kernel", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "textlint kernel is core logic by pure JavaScript.", | ||
@@ -37,2 +37,3 @@ "keywords": [ | ||
"@textlint/ast-node-types": "^4.0.1", | ||
"@textlint/ast-traverse": "^2.0.5", | ||
"@textlint/feature-flag": "^3.0.4", | ||
@@ -44,7 +45,7 @@ "@types/bluebird": "^3.5.18", | ||
"object-assign": "^4.1.1", | ||
"structured-source": "^3.0.2", | ||
"txt-ast-traverse": "^2.0.4" | ||
"structured-source": "^3.0.2" | ||
}, | ||
"devDependencies": { | ||
"@textlint/markdown-to-ast": "^6.0.4", | ||
"@textlint/markdown-to-ast": "^6.0.5", | ||
"@textlint/textlint-plugin-markdown": "^4.0.7", | ||
"@types/mocha": "^2.2.43", | ||
@@ -58,3 +59,2 @@ "@types/node": "^8.0.28", | ||
"shelljs": "^0.7.7", | ||
"textlint-plugin-markdown": "^4.0.6", | ||
"ts-node": "^3.3.0", | ||
@@ -61,0 +61,0 @@ "typescript": "~2.6.1", |
@@ -26,3 +26,3 @@ # @textlint/kernel | ||
pluginId: "markdown", | ||
plugin: require("textlint-plugin-markdown") | ||
plugin: require("@textlint/textlint-plugin-markdown") | ||
} | ||
@@ -29,0 +29,0 @@ ], |
// LICENSE : MIT | ||
"use strict"; | ||
const TraverseController = require("txt-ast-traverse").Controller; | ||
const TraverseController = require("@textlint/ast-traverse").Controller; | ||
const traverseController = new TraverseController(); | ||
@@ -5,0 +5,0 @@ const debug = require("debug")("textlint:core-task"); |
@@ -120,3 +120,3 @@ // rule config | ||
// plugin module | ||
// For example, `plugin: require("textlint-plugin-markdown")` | ||
// For example, `plugin: require("@textlint/textlint-plugin-markdown")` | ||
plugin: TextlintPluginCreator; | ||
@@ -123,0 +123,0 @@ // plugin options |
Sorry, the diff of this file is not supported yet
273264
+ Added@textlint/ast-traverse@2.3.5(transitive)
- Removedtxt-ast-traverse@^2.0.4
- Removedtxt-ast-traverse@2.0.4(transitive)