chore(ui): release 0.6.0

chore: update beta release steps

chore: prepare release

chore: regenerate pkg-lock

chrore: try prev working pkg-lock
This commit is contained in:
gerjanvangeest 2024-03-26 15:57:52 +01:00 committed by Thijs Louisse
parent ef4acf2485
commit 395595198c
6 changed files with 711 additions and 267 deletions

View file

@ -3,7 +3,7 @@ name: Release
on: on:
push: push:
branches: branches:
- lit3-alpha - master
jobs: jobs:
release: release:

955
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -21,7 +21,7 @@
"lint:types": "npm run types", "lint:types": "npm run types",
"lint:versions": "node ./scripts/lint-versions.js", "lint:versions": "node ./scripts/lint-versions.js",
"prepare": "husky install", "prepare": "husky install",
"release": "changeset publish --tag lit3-alpha", "release": "changeset publish",
"rm-all-node_modules": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules", "rm-all-node_modules": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules",
"rocket:build": "rocket build", "rocket:build": "rocket build",
"rocket:build:start": "web-dev-server --root-dir _site --open", "rocket:build:start": "web-dev-server --root-dir _site --open",

View file

@ -1,5 +1,21 @@
# @lion/ui # @lion/ui
## 0.6.0
### Minor Changes
- beta release with:
- Update to lit version 3
- Moved to scoped-elements v3
## 0.6.0-beta.0
### Minor Changes
- beta release with:
- Update to lit version 3
- Moved to scoped-elements v3
## 0.6.0-alpha.5 ## 0.6.0-alpha.5
### Minor Changes ### Minor Changes

View file

@ -6,6 +6,7 @@ import { LionInputTelDropdown } from '@lion/ui/input-tel-dropdown.js';
import { LionOption } from '@lion/ui/listbox.js'; import { LionOption } from '@lion/ui/listbox.js';
import { LionSelectRich } from '@lion/ui/select-rich.js'; import { LionSelectRich } from '@lion/ui/select-rich.js';
import { runInputTelDropdownSuite } from '@lion/ui/input-tel-dropdown-test-suites.js'; import { runInputTelDropdownSuite } from '@lion/ui/input-tel-dropdown-test-suites.js';
import { mimicUserChangingDropdown } from '@lion/ui/input-tel-dropdown-test-helpers.js';
import { ScopedElementsMixin } from '../../core/src/ScopedElementsMixin.js'; import { ScopedElementsMixin } from '../../core/src/ScopedElementsMixin.js';
/** /**

View file

@ -1,6 +1,6 @@
{ {
"name": "@lion/ui", "name": "@lion/ui",
"version": "0.6.0-alpha.5", "version": "0.6.0",
"description": "A package of extendable web components", "description": "A package of extendable web components",
"license": "MIT", "license": "MIT",
"author": "ing-bank", "author": "ing-bank",