@geode/opengeodeweb-front 9.11.0-rc.2 → 9.11.0-rc.4

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.
@@ -0,0 +1,11 @@
1
+ name: Deploy
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ deploy:
8
+ uses: Geode-solutions/actions/.github/workflows/js-deploy.yml@master
9
+ with:
10
+ repos: ${{ vars.REPOS }}
11
+ secrets: inherit
@@ -0,0 +1,9 @@
1
+ name: Merge request
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ release:
8
+ uses: Geode-solutions/actions/.github/workflows/js-merge-request.yml@master
9
+ secrets: inherit
@@ -0,0 +1,11 @@
1
+ name: Pull request
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, reopened]
6
+ branches:
7
+ - master
8
+
9
+ jobs:
10
+ update-branch:
11
+ uses: Geode-solutions/actions/.github/workflows/update-branch.yml@master
@@ -0,0 +1,9 @@
1
+ name: Prepare deploy
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ prepare:
8
+ uses: Geode-solutions/actions/.github/workflows/js-prepare-deploy.yml@master
9
+ secrets: inherit
@@ -0,0 +1,14 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches-ignore:
6
+ - master
7
+ - next
8
+
9
+ jobs:
10
+ test:
11
+ uses: Geode-solutions/actions/.github/workflows/js-test.yml@master
12
+ with:
13
+ repos: ${{ vars.REPOS }}
14
+ secrets: inherit
@@ -0,0 +1,12 @@
1
+ name: Test PR
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened, ready_for_review]
6
+
7
+ jobs:
8
+ test:
9
+ uses: Geode-solutions/actions/.github/workflows/js-test-pr.yml@master
10
+ with:
11
+ repos: ${{ vars.REPOS }}
12
+ secrets: inherit
package/.releaserc CHANGED
@@ -6,7 +6,6 @@
6
6
  plugins: [
7
7
  '@semantic-release/commit-analyzer',
8
8
  '@semantic-release/release-notes-generator',
9
- '@semantic-release/github',
10
- '@semantic-release/npm'
9
+ '@semantic-release/github'
11
10
  ]
12
11
  }
@@ -0,0 +1,16 @@
1
+ export default {
2
+ extends: ["@commitlint/config-angular"],
3
+ rules: {
4
+ "scope-empty": [2, "never"],
5
+ "subject-empty": [2, "never"],
6
+ "subject-max-length": [0],
7
+ "body-leading-blank": [0],
8
+ "footer-leading-blank": [0],
9
+ "header-max-length": [0],
10
+ "scope-case": [0],
11
+ "subject-case": [0],
12
+ "subject-full-stop": [0],
13
+ "type-case": [0],
14
+ "type-empty": [0],
15
+ },
16
+ }
@@ -24,7 +24,7 @@
24
24
  <v-img
25
25
  :src="geode_objects[key].image"
26
26
  cover
27
- :class="!value['is_loadable'] ? 'disabled' : ''"
27
+ :class="!value['is_loadable'] ? 'disabled' : undefined"
28
28
  />
29
29
  </v-card>
30
30
  </span>
@@ -140,7 +140,7 @@
140
140
  }
141
141
 
142
142
  function set_geode_object(input_geode_object) {
143
- if (input_geode_object != "") {
143
+ if (input_geode_object) {
144
144
  emit("update_values", { input_geode_object })
145
145
  emit("increment_step")
146
146
  }
package/package.json CHANGED
@@ -4,7 +4,8 @@
4
4
  "lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
5
5
  "test": "vitest",
6
6
  "coverage": "vitest run --coverage",
7
- "geode_objects": "node scripts/generate_geode_objects.js && prettier ./assets/geode_objects.js --write"
7
+ "geode_objects": "node scripts/generate_geode_objects.js && prettier ./assets/geode_objects.js --write",
8
+ "build": ""
8
9
  },
9
10
  "devDependencies": {
10
11
  "@nuxt/test-utils": "3.18.0",
@@ -34,11 +35,11 @@
34
35
  },
35
36
  "description": "OpenSource Vue/Vuetify framework for web applications",
36
37
  "type": "module",
37
- "version": "9.11.0-rc.2",
38
+ "version": "9.11.0-rc.4",
38
39
  "main": "./nuxt.config.js",
39
40
  "dependencies": {
40
- "@geode/opengeodeweb-back": "5.8.7",
41
- "@geode/opengeodeweb-viewer": "1.10.1",
41
+ "@geode/opengeodeweb-back": "file:geode-opengeodeweb-back-5.10.0-rc.5.tgz",
42
+ "@geode/opengeodeweb-viewer": "file:geode-opengeodeweb-viewer-1.11.0-rc.3.tgz",
42
43
  "@kitware/vtk.js": "33.3.0",
43
44
  "@mdi/font": "7.4.47",
44
45
  "@pinia/nuxt": "0.5.4",
@@ -1,11 +0,0 @@
1
- name: Check branch origin
2
-
3
- on:
4
- pull_request:
5
-
6
- jobs:
7
- check-branch-protection:
8
- uses: Geode-solutions/actions/.github/workflows/branch-protection.yml@master
9
- with:
10
- branch_from: "next"
11
- branch_to: "master"
@@ -1,37 +0,0 @@
1
- name: CICD
2
-
3
- on:
4
- push:
5
-
6
- jobs:
7
- test:
8
- runs-on: ubuntu-latest
9
- steps:
10
- - name: Checkout
11
- uses: actions/checkout@v4
12
- - name: Unit tests
13
- run: |
14
- npm ci
15
- npm run test
16
-
17
- build:
18
- runs-on: ubuntu-latest
19
- needs: test
20
- if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master'
21
- steps:
22
- - name: Checkout
23
- uses: actions/checkout@v4
24
- - name: Semantic Release
25
- uses: cycjimmy/semantic-release-action@v3
26
- id: semantic
27
- env:
28
- GITHUB_TOKEN: ${{ secrets.TOKEN }}
29
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
30
- - name: Merge master -> next
31
- if: github.ref == 'refs/heads/master'
32
- uses: devmasx/merge-branch@master
33
- with:
34
- type: now
35
- from_branch: master
36
- target_branch: next
37
- github_token: ${{ secrets.TOKEN }}
@@ -1,11 +0,0 @@
1
- name: Prepare PR
2
-
3
- on:
4
- pull_request:
5
- branches:
6
- - next
7
-
8
- jobs:
9
- prepare:
10
- uses: Geode-solutions/actions/.github/workflows/web-prepare-pr.yml@master
11
- secrets: inherit