Skip to content

Commit

Permalink
fix: splitting up open-scd and plugins (#1469)
Browse files Browse the repository at this point in the history
* fix: splitting up open-scd and plugins

* chore: changed package-lock

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

* chore: added panzoom dependency

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

* chore: added missing dependencies

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

* Update packages/plugins/README.md

Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>

* Update packages/plugins/package.json

Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>

* chore: removed sw from plugins

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

* chore: removed google folder from plugins

* chore: altered action pane test

* chore: removed start and added bundle

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

* chore: add include to tsconfig

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>

---------

Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com>
Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>
  • Loading branch information
Stef3st and pascalwilbrink authored Mar 14, 2024
1 parent d6dbd29 commit 200c030
Show file tree
Hide file tree
Showing 677 changed files with 53,950 additions and 20,309 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,23 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'
node-version: "18.x"

- name: Install and build Core
run: |
cd packages/core
npm clean-install
npm run-script build
- name: Install and Build OpenSCD
run: |
cd packages/open-scd
npm clean-install
npm run-script build
- name: Install and Bundle Plugins
run: |
cd packages/plugins
npm clean-install
npm run-script test
npm run-script bundle
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- main
paths:
- packages/open-scd/**
- packages/plugins/**

jobs:
test:
Expand All @@ -16,10 +17,16 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'
node-version: "18.x"

- name: Install and Test
run: |
cd packages/open-scd
npm clean-install
npm run-script test
- name: Install and Test
run: |
cd packages/plugins
npm clean-install
npm run-script test
Loading

0 comments on commit 200c030

Please sign in to comment.