@textlint/ast-tester
Advanced tools
Comparing version 2.1.0 to 2.1.1
@@ -6,2 +6,20 @@ # Change Log | ||
<a name="2.1.1"></a> | ||
## [2.1.1](https://github.com/textlint/textlint/compare/@textlint/ast-tester@2.1.0...@textlint/ast-tester@2.1.1) (2019-01-03) | ||
### Chores | ||
* **ast-tester:** remove "noEmit" option ([85642be](https://github.com/textlint/textlint/commit/85642be)) | ||
* **ast-tester:** rename index file to index.ts ([5149101](https://github.com/textlint/textlint/commit/5149101)) | ||
### Code Refactoring | ||
* **ast-tester:** Convert to TypeScript ([2bb1247](https://github.com/textlint/textlint/commit/2bb1247)), closes [#567](https://github.com/textlint/textlint/issues/567) | ||
<a name="2.1.0"></a> | ||
@@ -8,0 +26,0 @@ # [2.1.0](https://github.com/textlint/textlint/compare/@textlint/ast-tester@2.0.8...@textlint/ast-tester@2.1.0) (2019-01-01) |
{ | ||
"name": "@textlint/ast-tester", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"description": "Compliance tests for textlint's AST(Abstract Syntax Tree).", | ||
@@ -16,2 +16,6 @@ "keywords": [ | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/textlint/textlint.git" | ||
}, | ||
"license": "MIT", | ||
@@ -23,34 +27,32 @@ "author": "azu", | ||
], | ||
"main": "lib/textlint-ast-tester.js", | ||
"main": "lib/ast-tester/src/index.js", | ||
"types": "lib/ast-tester/src/index.d.ts", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/textlint/textlint.git" | ||
}, | ||
"scripts": { | ||
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps", | ||
"build": "cross-env NODE_ENV=production tsc -p .", | ||
"clean": "rimraf lib/", | ||
"prepublish": "npm run --if-present build", | ||
"test": "mocha \"test/**/*.{js,ts}\"", | ||
"watch": "babel src --out-dir lib --watch --source-maps" | ||
"watch": "tsc -p . --watch" | ||
}, | ||
"dependencies": { | ||
"@textlint/ast-node-types": "^4.2.0" | ||
}, | ||
"devDependencies": { | ||
"@textlint/markdown-to-ast": "^6.1.0", | ||
"@textlint/text-to-ast": "^3.1.0", | ||
"babel-cli": "^6.6.5", | ||
"babel-plugin-add-module-exports": "^0.2.1", | ||
"babel-preset-es2015": "^6.6.0", | ||
"babel-preset-power-assert": "^1.0.0", | ||
"babel-register": "^6.7.2", | ||
"@types/mocha": "^5.2.5", | ||
"@types/node": "^10.12.18", | ||
"cross-env": "^5.2.0", | ||
"mocha": "^5.2.0", | ||
"power-assert": "^1.6.1", | ||
"rimraf": "^2.6.2" | ||
"rimraf": "^2.6.2", | ||
"ts-node": "^7.0.1", | ||
"ts-node-test-register": "^4.0.0", | ||
"typescript": "^3.2.2" | ||
}, | ||
"email": "azuciao@gmail.com", | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
}, | ||
"email": "azuciao@gmail.com", | ||
"gitHead": "d035d8599ae7e3713cf6cec9745afad538b82680" | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
33705
8
18
489
1
1
+ Added@textlint/ast-node-types@4.4.3(transitive)