Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/deploy-docs.yml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20.x'

- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-

- run: yarn
- run: npm install
- run: npm run build
- run: npm run test:cov
- name: SonarCloud Scan
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/publish-mousedown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Publish Mousedown Fork

on:
push:
branches: [ feature/mousedown-events ]

jobs:
publish:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-

- run: npm install
- run: npm run build

- name: Publish @samelie/dockview-core
run: npm publish --access public
working-directory: packages/dockview-core

- name: Publish @samelie/dockview
run: npm publish --access public
working-directory: packages/dockview

- name: Publish @samelie/dockview-vue
run: npm publish --access public
working-directory: packages/dockview-vue

- name: Publish @samelie/dockview-react
run: npm publish --access public
working-directory: packages/dockview-react
78 changes: 0 additions & 78 deletions .github/workflows/publish.yml

This file was deleted.

4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"packages": [
"packages/*"
],
"version": "4.2.4",
"npmClient": "yarn",
"version": "4.2.5-mousedown.0",
"npmClient": "npm",
"command": {
"publish": {
"message": "chore(release): publish %s"
Expand Down
Loading