Skip to content

Commit

Permalink
v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Feb 12, 2023
1 parent 8e373c9 commit 11e7ba2
Show file tree
Hide file tree
Showing 9 changed files with 524 additions and 524 deletions.
6 changes: 3 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"useWorkspaces": true,
"npmClient": "yarn",
"version": "0.12.6"
"useWorkspaces": true,
"npmClient": "yarn",
"version": "0.13.0"
}
122 changes: 61 additions & 61 deletions packages/@textlint/config-inliner/package.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
{
"name": "@textlint/config-inliner",
"version": "0.12.0",
"description": "Inlining config for supporting browser.",
"keywords": [
"textlint"
],
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/config-inliner/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/config-inliner.js",
"module": "module/config-inliner.js",
"types": "lib/config-inliner.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"test": "mocha \"test/**/*.ts\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"watch": "tsc -p . --watch",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@textlint/config-loader": "^13.3.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
"name": "@textlint/config-inliner",
"version": "0.13.0",
"description": "Inlining config for supporting browser.",
"keywords": [
"textlint"
],
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/config-inliner/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/config-inliner.js",
"module": "module/config-inliner.js",
"types": "lib/config-inliner.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/"
],
"scripts": {
"test": "mocha \"test/**/*.ts\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"watch": "tsc -p . --watch",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@textlint/config-loader": "^13.3.0",
"untildify": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}
126 changes: 63 additions & 63 deletions packages/@textlint/config-partial-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"name": "@textlint/config-partial-parser",
"version": "0.12.0",
"description": "A partial parser for textlintrc",
"keywords": [
"textlint",
"config"
],
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/config-partial-parser/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"module": "module/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@textlint/config-loader": "^13.3.0",
"@textlint/kernel": "^13.3.0",
"@textlint/types": "^13.3.0",
"@textlint/utils": "^13.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
"name": "@textlint/config-partial-parser",
"version": "0.13.0",
"description": "A partial parser for textlintrc",
"keywords": [
"textlint",
"config"
],
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/config-partial-parser/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"module": "module/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"build": "tsc -p . && tsc -p ./tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@textlint/config-loader": "^13.3.0",
"@textlint/kernel": "^13.3.0",
"@textlint/types": "^13.3.0",
"@textlint/utils": "^13.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}
122 changes: 61 additions & 61 deletions packages/@textlint/runtime-helper/package.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,63 @@
{
"name": "@textlint/runtime-helper",
"version": "0.12.0",
"description": "A runtime helper",
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/runtime-helper/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"module": "module/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"build": "tsc -p . && tsc --project ./tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@kvs/env": "^1.1.0",
"@textlint/config-loader": "^13.3.0",
"@textlint/kernel": "^13.3.0",
"@textlint/module-interop": "^13.3.0",
"@textlint/types": "^13.3.0",
"@textlint/utils": "^13.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
"name": "@textlint/runtime-helper",
"version": "0.13.0",
"description": "A runtime helper",
"homepage": "https://github.com/textlint/editor/tree/master/packages/@textlint/runtime-helper/",
"bugs": {
"url": "https://github.com/textlint/editor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/editor.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/index.js",
"module": "module/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"build": "tsc -p . && tsc --project ./tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@kvs/env": "^1.1.0",
"@textlint/config-loader": "^13.3.0",
"@textlint/kernel": "^13.3.0",
"@textlint/module-interop": "^13.3.0",
"@textlint/types": "^13.3.0",
"@textlint/utils": "^13.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5"
},
"publishConfig": {
"access": "public"
}
}
Loading

0 comments on commit 11e7ba2

Please sign in to comment.