Version Packages (#2569)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
6e0ed97423
commit
4c077fbf1d
7 changed files with 22 additions and 19 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': patch
|
||||
---
|
||||
|
||||
[input-stepper] make decrement and increment functions protected instead of private
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@lion/ui': minor
|
||||
---
|
||||
|
||||
Make the manager singletons get instantiated and registered lazily.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'singleton-manager': minor
|
||||
---
|
||||
|
||||
Add `lazifyInstantiation` method to singleton-manager. It will help create side-effect-free app setups, avoiding hosisting problems during bundling conflicts and/or long-winded, multi-file setup logic.
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
# Change Log
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 6e0ed97: Add `lazifyInstantiation` method to singleton-manager. It will help create side-effect-free app setups, avoiding hosisting problems during bundling conflicts and/or long-winded, multi-file setup logic.
|
||||
|
||||
## 1.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "singleton-manager",
|
||||
"version": "1.7.0",
|
||||
"version": "1.8.0",
|
||||
"description": "Manage singletons across multiple major versions so they converge to a single instance",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
"debug": "cd ../../ && npm run debug -- --group singleton-manager",
|
||||
"debug:firefox": "cd ../../ && npm run debug:firefox -- --group singleton-manager",
|
||||
"debug:webkit": "cd ../../ && npm run debug:webkit -- --group singleton-manager",
|
||||
"publish-docs": "node ../../packages-node/publish-docs/src/cli.js --github-url https://github.com/ing-bank/lion/ --git-root-dir ../../",
|
||||
"prepublishOnly": "npm run types && npm run publish-docs",
|
||||
"publish-docs": "node ../../packages-node/publish-docs/src/cli.js --github-url https://github.com/ing-bank/lion/ --git-root-dir ../../",
|
||||
"start:fail": "es-dev-server -c demo/fail/server.js",
|
||||
"start:singleton": "es-dev-server -c demo/singleton/server.js",
|
||||
"start:singleton-complex": "es-dev-server -c demo/singleton-complex/server.js",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# @lion/ui
|
||||
|
||||
## 0.15.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 6e0ed97: Make the manager singletons get instantiated and registered lazily.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 02d0106: [input-stepper] make decrement and increment functions protected instead of private
|
||||
- Updated dependencies [6e0ed97]
|
||||
- singleton-manager@1.8.0
|
||||
|
||||
## 0.14.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lion/ui",
|
||||
"version": "0.14.3",
|
||||
"version": "0.15.0",
|
||||
"description": "A package of extendable web components",
|
||||
"license": "MIT",
|
||||
"author": "ing-bank",
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
"awesome-phonenumber": "^6.4.0",
|
||||
"ibantools": "^4.3.9",
|
||||
"lit": "^3.1.2",
|
||||
"singleton-manager": "^1.7.0"
|
||||
"singleton-manager": "^1.8.0"
|
||||
},
|
||||
"keywords": [
|
||||
"design-system",
|
||||
|
|
|
|||
Loading…
Reference in a new issue