зеркало из https://github.com/microsoft/boll.git
applying package updates
This commit is contained in:
Родитель
b668b6cd36
Коммит
33e27edb11
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/cli",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:27.128Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/core",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:29.325Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/recommended",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:30.976Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/rules-core",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:32.388Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/rules-external-tools",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:33.800Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/rules-monorepo",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:35.209Z"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"type": "major",
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"packageName": "@boll/rules-typescript",
|
||||
"email": "jcreamer@microsoft.com",
|
||||
"dependentChangeType": "patch",
|
||||
"date": "2023-01-19T15:37:36.791Z"
|
||||
}
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/cli",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/cli_v2.0.0",
|
||||
"version": "2.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/cli"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Tue, 15 Dec 2020 17:22:23 GMT",
|
||||
"tag": "@boll/cli_v1.2.0",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/cli
|
||||
|
||||
This log was last generated on Tue, 15 Dec 2020 17:22:23 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 2.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 1.2.0
|
||||
|
||||
Tue, 15 Dec 2020 17:22:23 GMT
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"argparse": "^1.0.10",
|
||||
"fast-glob": "^3.2.4",
|
||||
"typescript": "^4.9.4",
|
||||
|
@ -48,5 +48,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": "node dist/tests/all.test.js"
|
||||
},
|
||||
"version": "1.2.1"
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/core",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/core_v3.0.0",
|
||||
"version": "3.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/core"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Tue, 16 Feb 2021 20:18:03 GMT",
|
||||
"tag": "@boll/core_v2.0.0",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/core
|
||||
|
||||
This log was last generated on Tue, 16 Feb 2021 20:18:03 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 3.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 2.0.0
|
||||
|
||||
Tue, 16 Feb 2021 20:18:03 GMT
|
||||
|
|
|
@ -46,5 +46,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": "node dist/tests/all.test.js"
|
||||
},
|
||||
"version": "2.0.0"
|
||||
"version": "3.0.0"
|
||||
}
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
},
|
||||
"description": "> TODO: description",
|
||||
"devDependencies": {
|
||||
"@boll/cli": "1.2.1",
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/rules-core": "0.1.7",
|
||||
"@boll/rules-external-tools": "0.1.7",
|
||||
"@boll/rules-typescript": "1.0.0",
|
||||
"@boll/cli": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"@boll/rules-core": "1.0.0",
|
||||
"@boll/rules-external-tools": "1.0.0",
|
||||
"@boll/rules-typescript": "2.0.0",
|
||||
"gh-pages": "^3.1.0",
|
||||
"fast-glob": "^3.2.4",
|
||||
"vuepress": "1.5.4"
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/cli": "1.2.1",
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/recommended": "1.0.0",
|
||||
"@boll/rules-typescript": "1.0.0"
|
||||
"@boll/cli": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"@boll/recommended": "2.0.0",
|
||||
"@boll/rules-typescript": "2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@boll/test-internal": "0.0.1",
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/recommended",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/recommended_v2.0.0",
|
||||
"version": "2.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/recommended"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Tue, 16 Feb 2021 20:18:03 GMT",
|
||||
"tag": "@boll/recommended_v1.0.0",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/recommended
|
||||
|
||||
This log was last generated on Tue, 16 Feb 2021 20:18:03 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 2.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 1.0.0
|
||||
|
||||
Tue, 16 Feb 2021 20:18:03 GMT
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/rules-external-tools": "0.1.7",
|
||||
"@boll/rules-core": "0.1.7",
|
||||
"@boll/rules-monorepo": "0.1.0",
|
||||
"@boll/rules-typescript": "1.0.0"
|
||||
"@boll/core": "3.0.0",
|
||||
"@boll/rules-external-tools": "1.0.0",
|
||||
"@boll/rules-core": "1.0.0",
|
||||
"@boll/rules-monorepo": "1.0.0",
|
||||
"@boll/rules-typescript": "2.0.0"
|
||||
},
|
||||
"description": "Recommended configuration for TypeScript monorepos ",
|
||||
"devDependencies": {
|
||||
|
@ -38,5 +38,5 @@
|
|||
"clean": "rimraf ./dist",
|
||||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src"
|
||||
},
|
||||
"version": "1.0.0"
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/rules-core",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/rules-core_v1.0.0",
|
||||
"version": "1.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/rules-core"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 18 Nov 2020 01:19:24 GMT",
|
||||
"tag": "@boll/rules-core_v0.1.3",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/rules-core
|
||||
|
||||
This log was last generated on Wed, 18 Nov 2020 01:19:24 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 1.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 0.1.3
|
||||
|
||||
Wed, 18 Nov 2020 01:19:24 GMT
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0"
|
||||
"@boll/core": "3.0.0"
|
||||
},
|
||||
"description": "@boll rules for project configuration and layout",
|
||||
"devDependencies": {
|
||||
|
@ -39,5 +39,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": "node dist/tests/all.test.js"
|
||||
},
|
||||
"version": "0.1.7"
|
||||
"version": "1.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/rules-external-tools",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/rules-external-tools_v1.0.0",
|
||||
"version": "1.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/rules-external-tools"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Tue, 17 Nov 2020 20:16:43 GMT",
|
||||
"tag": "@boll/rules-external-tools_v0.1.3",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/rules-external-tools
|
||||
|
||||
This log was last generated on Thu, 22 Oct 2020 18:26:52 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 1.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 0.1.0
|
||||
|
||||
Thu, 22 Oct 2020 18:26:52 GMT
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"eslint": "^7.8.1"
|
||||
},
|
||||
"description": "@boll rules for typescript source files",
|
||||
|
@ -41,5 +41,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": "node dist/tests/all.test.js"
|
||||
},
|
||||
"version": "0.1.7"
|
||||
"version": "1.0.0"
|
||||
}
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"name": "@boll/rules-monorepo",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/rules-monorepo_v1.0.0",
|
||||
"version": "1.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/rules-monorepo"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
# Change Log - @boll/rules-monorepo
|
||||
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 1.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
|
@ -4,7 +4,7 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"typescript": "^4.9.4"
|
||||
},
|
||||
"description": "@boll rules for a large monorepo",
|
||||
|
@ -38,5 +38,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": ""
|
||||
},
|
||||
"version": "0.1.0"
|
||||
"version": "1.0.0"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@boll/rules-typescript",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Wed, 25 Jan 2023 20:39:53 GMT",
|
||||
"tag": "@boll/rules-typescript_v2.0.0",
|
||||
"version": "2.0.0",
|
||||
"comments": {
|
||||
"major": [
|
||||
{
|
||||
"comment": "boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin",
|
||||
"author": "jcreamer@microsoft.com",
|
||||
"commit": "b668b6cd367222e4eb8d1586d109208cdfdd64cf",
|
||||
"package": "@boll/rules-typescript"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Tue, 16 Feb 2021 20:18:03 GMT",
|
||||
"tag": "@boll/rules-typescript_v1.0.0",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @boll/rules-typescript
|
||||
|
||||
This log was last generated on Tue, 16 Feb 2021 20:18:03 GMT and should not be manually modified.
|
||||
This log was last generated on Wed, 25 Jan 2023 20:39:53 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 2.0.0
|
||||
|
||||
Wed, 25 Jan 2023 20:39:53 GMT
|
||||
|
||||
### Major changes
|
||||
|
||||
- boll v3 updates * new addRule api * refactor to include workspace tools * add a way to autoload rules * upgrade typescript * support external plugin (jcreamer@microsoft.com)
|
||||
|
||||
## 1.0.0
|
||||
|
||||
Tue, 16 Feb 2021 20:18:03 GMT
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"url": "https://github.com/microsoft/boll/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"@boll/core": "2.0.0",
|
||||
"@boll/core": "3.0.0",
|
||||
"typescript": "^4.9.4"
|
||||
},
|
||||
"description": "@boll rules for typescript source files",
|
||||
|
@ -39,5 +39,5 @@
|
|||
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
|
||||
"test": "node dist/tests/all.test.js"
|
||||
},
|
||||
"version": "1.0.0"
|
||||
"version": "2.0.0"
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче