@silexlabs/silex-dashboard 1.4.1-7 → 1.5.0-canary.0
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.
|
@@ -8,6 +8,9 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
publish:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write
|
|
13
|
+
contents: read
|
|
11
14
|
steps:
|
|
12
15
|
- uses: actions/checkout@v4
|
|
13
16
|
with:
|
|
@@ -18,6 +21,9 @@ jobs:
|
|
|
18
21
|
node-version: '20'
|
|
19
22
|
registry-url: 'https://registry.npmjs.org'
|
|
20
23
|
|
|
24
|
+
- name: Update npm
|
|
25
|
+
run: npm install -g npm@latest
|
|
26
|
+
|
|
21
27
|
- run: npm ci
|
|
22
28
|
- run: npm run lint --if-present
|
|
23
29
|
- run: npm run build --if-present
|
|
@@ -35,6 +41,4 @@ jobs:
|
|
|
35
41
|
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
36
42
|
|
|
37
43
|
- name: Publish to npm
|
|
38
|
-
run: npm publish --tag ${{ steps.version.outputs.tag }} --access public
|
|
39
|
-
env:
|
|
40
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
44
|
+
run: npm publish --tag ${{ steps.version.outputs.tag }} --access public
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@silexlabs/silex-dashboard",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0-canary.0",
|
|
4
4
|
"description": "Dashboard for Silex v3",
|
|
5
5
|
"main": "silex/server-config.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "
|
|
17
|
+
"url": "https://github.com/silexlabs/silex-dashboard.git"
|
|
18
18
|
},
|
|
19
19
|
"keywords": [
|
|
20
20
|
"silex",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@11ty/eleventy": "^3.0.0",
|
|
35
35
|
"@tinacms/cli": "^1.9.5",
|
|
36
|
-
"@silexlabs/silex": "3.
|
|
36
|
+
"@silexlabs/silex": "3.6.0-canary.0",
|
|
37
37
|
"@types/node": "^22.14.1",
|
|
38
38
|
"concurrently": "^9.1.2",
|
|
39
39
|
"start-server-and-test": "^2.0.11"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"locale": "^0.1.0",
|
|
43
|
-
"node_modules-path": "^2.
|
|
43
|
+
"node_modules-path": "^2.3.0",
|
|
44
44
|
"serve-static": "^2.2.0",
|
|
45
45
|
"vue": "^3.5.13"
|
|
46
46
|
}
|