This commit is contained in:
Ken Chau 2023-01-25 20:39:53 +00:00
Родитель b668b6cd36
Коммит 33e27edb11
30 изменённых файлов: 203 добавлений и 88 удалений

Просмотреть файл

@ -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", "name": "@boll/cli",
"entries": [ "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", "date": "Tue, 15 Dec 2020 17:22:23 GMT",
"tag": "@boll/cli_v1.2.0", "tag": "@boll/cli_v1.2.0",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/cli # 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 --> <!-- 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 ## 1.2.0
Tue, 15 Dec 2020 17:22:23 GMT Tue, 15 Dec 2020 17:22:23 GMT

Просмотреть файл

@ -7,7 +7,7 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"argparse": "^1.0.10", "argparse": "^1.0.10",
"fast-glob": "^3.2.4", "fast-glob": "^3.2.4",
"typescript": "^4.9.4", "typescript": "^4.9.4",
@ -48,5 +48,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js" "test": "node dist/tests/all.test.js"
}, },
"version": "1.2.1" "version": "2.0.0"
} }

Просмотреть файл

@ -1,6 +1,21 @@
{ {
"name": "@boll/core", "name": "@boll/core",
"entries": [ "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", "date": "Tue, 16 Feb 2021 20:18:03 GMT",
"tag": "@boll/core_v2.0.0", "tag": "@boll/core_v2.0.0",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/core # 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 --> <!-- 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 ## 2.0.0
Tue, 16 Feb 2021 20:18:03 GMT Tue, 16 Feb 2021 20:18:03 GMT

Просмотреть файл

@ -46,5 +46,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js" "test": "node dist/tests/all.test.js"
}, },
"version": "2.0.0" "version": "3.0.0"
} }

Просмотреть файл

@ -5,11 +5,11 @@
}, },
"description": "> TODO: description", "description": "> TODO: description",
"devDependencies": { "devDependencies": {
"@boll/cli": "1.2.1", "@boll/cli": "2.0.0",
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"@boll/rules-core": "0.1.7", "@boll/rules-core": "1.0.0",
"@boll/rules-external-tools": "0.1.7", "@boll/rules-external-tools": "1.0.0",
"@boll/rules-typescript": "1.0.0", "@boll/rules-typescript": "2.0.0",
"gh-pages": "^3.1.0", "gh-pages": "^3.1.0",
"fast-glob": "^3.2.4", "fast-glob": "^3.2.4",
"vuepress": "1.5.4" "vuepress": "1.5.4"

Просмотреть файл

@ -4,10 +4,10 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/cli": "1.2.1", "@boll/cli": "2.0.0",
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"@boll/recommended": "1.0.0", "@boll/recommended": "2.0.0",
"@boll/rules-typescript": "1.0.0" "@boll/rules-typescript": "2.0.0"
}, },
"devDependencies": { "devDependencies": {
"@boll/test-internal": "0.0.1", "@boll/test-internal": "0.0.1",

Просмотреть файл

@ -1,6 +1,21 @@
{ {
"name": "@boll/recommended", "name": "@boll/recommended",
"entries": [ "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", "date": "Tue, 16 Feb 2021 20:18:03 GMT",
"tag": "@boll/recommended_v1.0.0", "tag": "@boll/recommended_v1.0.0",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/recommended # 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 --> <!-- 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 ## 1.0.0
Tue, 16 Feb 2021 20:18:03 GMT Tue, 16 Feb 2021 20:18:03 GMT

Просмотреть файл

@ -4,11 +4,11 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"@boll/rules-external-tools": "0.1.7", "@boll/rules-external-tools": "1.0.0",
"@boll/rules-core": "0.1.7", "@boll/rules-core": "1.0.0",
"@boll/rules-monorepo": "0.1.0", "@boll/rules-monorepo": "1.0.0",
"@boll/rules-typescript": "1.0.0" "@boll/rules-typescript": "2.0.0"
}, },
"description": "Recommended configuration for TypeScript monorepos ", "description": "Recommended configuration for TypeScript monorepos ",
"devDependencies": { "devDependencies": {
@ -38,5 +38,5 @@
"clean": "rimraf ./dist", "clean": "rimraf ./dist",
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src" "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", "name": "@boll/rules-core",
"entries": [ "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", "date": "Wed, 18 Nov 2020 01:19:24 GMT",
"tag": "@boll/rules-core_v0.1.3", "tag": "@boll/rules-core_v0.1.3",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/rules-core # 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 --> <!-- 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 ## 0.1.3
Wed, 18 Nov 2020 01:19:24 GMT Wed, 18 Nov 2020 01:19:24 GMT

Просмотреть файл

@ -4,7 +4,7 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0" "@boll/core": "3.0.0"
}, },
"description": "@boll rules for project configuration and layout", "description": "@boll rules for project configuration and layout",
"devDependencies": { "devDependencies": {
@ -39,5 +39,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js" "test": "node dist/tests/all.test.js"
}, },
"version": "0.1.7" "version": "1.0.0"
} }

Просмотреть файл

@ -1,6 +1,21 @@
{ {
"name": "@boll/rules-external-tools", "name": "@boll/rules-external-tools",
"entries": [ "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", "date": "Tue, 17 Nov 2020 20:16:43 GMT",
"tag": "@boll/rules-external-tools_v0.1.3", "tag": "@boll/rules-external-tools_v0.1.3",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/rules-external-tools # 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 --> <!-- 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 ## 0.1.0
Thu, 22 Oct 2020 18:26:52 GMT Thu, 22 Oct 2020 18:26:52 GMT

Просмотреть файл

@ -4,7 +4,7 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"eslint": "^7.8.1" "eslint": "^7.8.1"
}, },
"description": "@boll rules for typescript source files", "description": "@boll rules for typescript source files",
@ -41,5 +41,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js" "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" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"typescript": "^4.9.4" "typescript": "^4.9.4"
}, },
"description": "@boll rules for a large monorepo", "description": "@boll rules for a large monorepo",
@ -38,5 +38,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "" "test": ""
}, },
"version": "0.1.0" "version": "1.0.0"
} }

Просмотреть файл

@ -1,6 +1,21 @@
{ {
"name": "@boll/rules-typescript", "name": "@boll/rules-typescript",
"entries": [ "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", "date": "Tue, 16 Feb 2021 20:18:03 GMT",
"tag": "@boll/rules-typescript_v1.0.0", "tag": "@boll/rules-typescript_v1.0.0",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @boll/rules-typescript # 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 --> <!-- 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 ## 1.0.0
Tue, 16 Feb 2021 20:18:03 GMT Tue, 16 Feb 2021 20:18:03 GMT

Просмотреть файл

@ -4,7 +4,7 @@
"url": "https://github.com/microsoft/boll/issues" "url": "https://github.com/microsoft/boll/issues"
}, },
"dependencies": { "dependencies": {
"@boll/core": "2.0.0", "@boll/core": "3.0.0",
"typescript": "^4.9.4" "typescript": "^4.9.4"
}, },
"description": "@boll rules for typescript source files", "description": "@boll rules for typescript source files",
@ -39,5 +39,5 @@
"docs": "typedoc --mode file --out ./apidocs --theme markdown ./src", "docs": "typedoc --mode file --out ./apidocs --theme markdown ./src",
"test": "node dist/tests/all.test.js" "test": "node dist/tests/all.test.js"
}, },
"version": "1.0.0" "version": "2.0.0"
} }