Version Packages
This commit is contained in:
parent
e08b6bec58
commit
3cc3d2960f
18 changed files with 89 additions and 101 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
add possibility to provide a 'custom defined project' (array of filePaths) to Analyzer
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': minor
|
||||
---
|
||||
|
||||
Expose more exports; updated to cjs format only
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
improvements find-exports, trackdown-identifier, get-source-code-fragment-of-declaration
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@lion/ajax': minor
|
||||
---
|
||||
|
||||
Update to use `package exports` with a dedicated `types` entry.
|
||||
This means the package only supports node 16+ and TS 4.7+ with `moduleResolution: Node16` or `moduleResolution: NodeNext` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ajax': patch
|
||||
---
|
||||
|
||||
don't throw on non-JSON responses in fetchJson
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
providence-analytics: add export-map functionality to InputDataService
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
add util "getSourceCodeFragmentOfDeclaration"
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'providence-analytics': patch
|
||||
---
|
||||
|
||||
improve memoization
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
This introduces a new package `@lion/ui` which is a collection of UI components that can be used in your application. It contains all the components/systems that used to be distributed via separate `@lion/*` packages.
|
||||
|
||||
This is a breaking as you will need to import all components from `@lion/ui` instead of `@lion/*` packages now.
|
||||
|
||||
```diff
|
||||
- import { LionAccordion } from '@lion/accordion';
|
||||
+ import { LionAccordion } from '@lion/ui/accordion.js';
|
||||
```
|
||||
|
||||
This is also true for element registrations
|
||||
|
||||
```diff
|
||||
- import '@lion/accordion/define';
|
||||
+ import '@lion/ui/define/lion-accordion.js';
|
||||
```
|
||||
|
||||
Essentially the whole public API e.g. all the available exports can be found in the [exports](https://github.com/ing-bank/lion/tree/master/packages/ui/exports) folder.
|
||||
|
||||
The package only supports TS 4.7+ using `"moduleResolution": "Node16"` or `"moduleResolution": "NodeNext"` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
||||
This package will have a new single CHANGELOG.md for the whole package. If you are interested the older individual changelogs then you can find them in the [\_legacy-changelogs folder](https://github.com/ing-bank/lion/tree/master/packages/ui/_legacy-changelogs).
|
||||
|
||||
This new version also includes the following changes for it's containing components:
|
||||
|
||||
- fix(switch): SwitchButton do not dispatch checked-change event when is disabled
|
||||
- fix(calendar): calendar translation de.js strings corrected
|
||||
|
||||
Note: This package is considered alpha until extending docs and type exports are verified.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'singleton-manager': minor
|
||||
---
|
||||
|
||||
Update to use `package exports` with a dedicated `types` entry.
|
||||
This means the package only supports node 16+ and TS 4.7+ with `moduleResolution: Node16` or `moduleResolution: NodeNext` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
|
@ -1,5 +1,19 @@
|
|||
# Change Log
|
||||
|
||||
## 0.14.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- e9c6523f: Expose more exports; updated to cjs format only
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a849f09f: add possibility to provide a 'custom defined project' (array of filePaths) to Analyzer
|
||||
- f7fc7df3: improvements find-exports, trackdown-identifier, get-source-code-fragment-of-declaration
|
||||
- 9593c456: providence-analytics: add export-map functionality to InputDataService
|
||||
- a849f09f: add util "getSourceCodeFragmentOfDeclaration"
|
||||
- dd3458af: improve memoization
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
@ -106,9 +120,7 @@
|
|||
}
|
||||
|
||||
render() {
|
||||
return html`
|
||||
<my-button>click me</my-button>
|
||||
`;
|
||||
return html` <my-button>click me</my-button> `;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "providence-analytics",
|
||||
"version": "0.13.0",
|
||||
"version": "0.14.0",
|
||||
"description": "Providence is the 'All Seeing Eye' that measures effectivity and popularity of software. Release management will become highly efficient due to an accurate impact analysis of (breaking) changes",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,16 @@
|
|||
# Change Log
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- e08b6bec: Update to use `package exports` with a dedicated `types` entry.
|
||||
This means the package only supports node 16+ and TS 4.7+ with `moduleResolution: Node16` or `moduleResolution: NodeNext` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 66abd3ea: don't throw on non-JSON responses in fetchJson
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Major Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/ajax",
|
||||
"version": "1.0.0",
|
||||
"version": "1.1.0",
|
||||
"description": "Thin wrapper around fetch with support for interceptors.",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -11,6 +11,13 @@
|
|||
"directory": "packages/ajax"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist-types/src/index.d.ts",
|
||||
"default": "./src/index.js"
|
||||
},
|
||||
"./docs/*": "./docs/*"
|
||||
},
|
||||
"main": "src/index.js",
|
||||
"module": "src/index.js",
|
||||
"files": [
|
||||
|
|
@ -37,13 +44,6 @@
|
|||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist-types/src/index.d.ts",
|
||||
"default": "./src/index.js"
|
||||
},
|
||||
"./docs/*": "./docs/*"
|
||||
},
|
||||
"wireit": {
|
||||
"types": {
|
||||
"command": "tsc --build --pretty",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# Change Log
|
||||
|
||||
## 1.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- e08b6bec: Update to use `package exports` with a dedicated `types` entry.
|
||||
This means the package only supports node 16+ and TS 4.7+ with `moduleResolution: Node16` or `moduleResolution: NodeNext` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
||||
## 1.5.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "singleton-manager",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.0",
|
||||
"description": "Manage singletons across multiple major versions so they converge to a single instance",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -11,6 +11,13 @@
|
|||
"directory": "packages/singleton-manager"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist-types/src/index.d.ts",
|
||||
"default": "./src/index.js"
|
||||
},
|
||||
"./docs/*": "./docs/*"
|
||||
},
|
||||
"files": [
|
||||
"dist-types",
|
||||
"docs",
|
||||
|
|
@ -36,13 +43,6 @@
|
|||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist-types/src/index.d.ts",
|
||||
"default": "./src/index.js"
|
||||
},
|
||||
"./docs/*": "./docs/*"
|
||||
},
|
||||
"wireit": {
|
||||
"types": {
|
||||
"command": "tsc --build --pretty",
|
||||
|
|
|
|||
37
packages/ui/CHANGELOG.md
Normal file
37
packages/ui/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# @lion/ui
|
||||
|
||||
## 0.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- e08b6bec: This introduces a new package `@lion/ui` which is a collection of UI components that can be used in your application. It contains all the components/systems that used to be distributed via separate `@lion/*` packages.
|
||||
|
||||
This is a breaking as you will need to import all components from `@lion/ui` instead of `@lion/*` packages now.
|
||||
|
||||
```diff
|
||||
- import { LionAccordion } from '@lion/accordion';
|
||||
+ import { LionAccordion } from '@lion/ui/accordion.js';
|
||||
```
|
||||
|
||||
This is also true for element registrations
|
||||
|
||||
```diff
|
||||
- import '@lion/accordion/define';
|
||||
+ import '@lion/ui/define/lion-accordion.js';
|
||||
```
|
||||
|
||||
Essentially the whole public API e.g. all the available exports can be found in the [exports](https://github.com/ing-bank/lion/tree/master/packages/ui/exports) folder.
|
||||
|
||||
The package only supports TS 4.7+ using `"moduleResolution": "Node16"` or `"moduleResolution": "NodeNext"` as described in the [TS 4.7 Announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#package-json-exports-imports-and-self-referencing).
|
||||
|
||||
This package will have a new single CHANGELOG.md for the whole package. If you are interested the older individual changelogs then you can find them in the [\_legacy-changelogs folder](https://github.com/ing-bank/lion/tree/master/packages/ui/_legacy-changelogs).
|
||||
|
||||
This new version also includes the following changes for it's containing components:
|
||||
|
||||
- fix(switch): SwitchButton do not dispatch checked-change event when is disabled
|
||||
- fix(calendar): calendar translation de.js strings corrected
|
||||
|
||||
Note: This package is considered alpha until extending docs and type exports are verified.
|
||||
|
||||
- Updated dependencies [e08b6bec]
|
||||
- singleton-manager@1.6.0
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/ui",
|
||||
"version": "0.0.0",
|
||||
"version": "0.0.1",
|
||||
"description": "A package of extendable web components",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
"awesome-phonenumber": "^3.0.1",
|
||||
"ibantools": "^2.2.0",
|
||||
"lit": "^2.4.0",
|
||||
"singleton-manager": "^1.5.0"
|
||||
"singleton-manager": "^1.6.0"
|
||||
},
|
||||
"keywords": [
|
||||
"design-system",
|
||||
|
|
|
|||
Loading…
Reference in a new issue