@lobb-js/lobb-ext-storage 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
3
3
|
|
|
4
4
|
- - -
|
|
5
|
+
## storage-ext@0.8.3 - 2026-03-28
|
|
6
|
+
#### Bug Fixes
|
|
7
|
+
- update readme to trigger publish - (cf1e896) - malik ben
|
|
8
|
+
- update READMEs to trigger republish of all packages - (2bd145d) - malik ben
|
|
9
|
+
#### Miscellaneous Chores
|
|
10
|
+
- remove dead storage-ext standalone GitHub Actions workflows - (578f982) - malik ben
|
|
11
|
+
|
|
12
|
+
- - -
|
|
13
|
+
|
|
5
14
|
## storage-ext@0.8.2 - 2026-03-28
|
|
6
15
|
#### Bug Fixes
|
|
7
16
|
- triggering the core package publish - (f0a8b54) - malik ben
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobb-js/lobb-ext-storage",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"build:studio": "vite build"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@lobb-js/core": "0.13.
|
|
33
|
+
"@lobb-js/core": "^0.13.3",
|
|
34
34
|
"browser-fs-access": "^0.35.0",
|
|
35
35
|
"hono": "^4.7.0",
|
|
36
36
|
"openapi-types": "^12.1.3",
|
|
37
37
|
"path-browserify": "^1.0.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@lobb-js/studio": "0.7.
|
|
40
|
+
"@lobb-js/studio": "^0.7.2",
|
|
41
41
|
"@lucide/svelte": "^0.563.1",
|
|
42
42
|
"@playwright/test": "^1.58.2",
|
|
43
43
|
"@sveltejs/adapter-node": "^5.5.4",
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
name: Create Tag on Version Change
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
check-version-and-tag:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
permissions:
|
|
12
|
-
contents: write
|
|
13
|
-
outputs:
|
|
14
|
-
current_version: ${{ steps.current_version.outputs.current_version }}
|
|
15
|
-
previous_version: ${{ steps.previous_version.outputs.previous_version }}
|
|
16
|
-
steps:
|
|
17
|
-
- name: Checkout repository
|
|
18
|
-
uses: actions/checkout@v4
|
|
19
|
-
with:
|
|
20
|
-
fetch-depth: 0
|
|
21
|
-
|
|
22
|
-
- name: Get previous version
|
|
23
|
-
id: previous_version
|
|
24
|
-
run: |
|
|
25
|
-
PREV_VERSION=$(git show HEAD^:package.json | jq -r .version || echo "none")
|
|
26
|
-
echo "previous_version=$PREV_VERSION" >> "$GITHUB_OUTPUT"
|
|
27
|
-
|
|
28
|
-
- name: Get current version
|
|
29
|
-
id: current_version
|
|
30
|
-
run: |
|
|
31
|
-
CURR_VERSION=$(jq -r .version package.json)
|
|
32
|
-
echo "current_version=$CURR_VERSION" >> "$GITHUB_OUTPUT"
|
|
33
|
-
|
|
34
|
-
- name: Create tag
|
|
35
|
-
if: steps.previous_version.outputs.previous_version != steps.current_version.outputs.current_version
|
|
36
|
-
uses: rickstaa/action-create-tag@v1
|
|
37
|
-
with:
|
|
38
|
-
tag: "${{ steps.current_version.outputs.current_version }}"
|
|
39
|
-
|
|
40
|
-
publish-to-npm:
|
|
41
|
-
name: Publish to npm
|
|
42
|
-
needs: check-version-and-tag
|
|
43
|
-
if: needs.check-version-and-tag.outputs.previous_version != needs.check-version-and-tag.outputs.current_version
|
|
44
|
-
uses: maliknajjar/lobb_storage_ext/.github/workflows/publish_npm_package.yaml@main
|
|
45
|
-
secrets: inherit
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
name: publish package to npm
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_call:
|
|
5
|
-
|
|
6
|
-
jobs:
|
|
7
|
-
publish:
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
permissions:
|
|
10
|
-
contents: read
|
|
11
|
-
id-token: write
|
|
12
|
-
steps:
|
|
13
|
-
- uses: actions/checkout@v4
|
|
14
|
-
- name: Setup Node.js
|
|
15
|
-
uses: actions/setup-node@v4
|
|
16
|
-
with:
|
|
17
|
-
node-version: '24'
|
|
18
|
-
registry-url: 'https://registry.npmjs.org'
|
|
19
|
-
- name: Setup Bun
|
|
20
|
-
uses: oven-sh/setup-bun@v2
|
|
21
|
-
- name: Install jq
|
|
22
|
-
run: sudo apt-get update && sudo apt-get install -y jq
|
|
23
|
-
- name: Install dependencies
|
|
24
|
-
run: bun install
|
|
25
|
-
- name: Publish to npm
|
|
26
|
-
run: npm publish --access public
|