mirror of
https://github.com/mathuo/dockview
synced 2025-05-03 01:58:26 +00:00
Merge branch 'master' of https://github.com/mathuo/dockview into master
This commit is contained in:
commit
f368b3ea8e
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
@ -8,7 +8,9 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
# might be required for sonar to work correctly
|
||||
with:
|
||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
@ -25,13 +27,6 @@ jobs:
|
||||
- run: npm run bootstrap
|
||||
- run: npm run build
|
||||
- run: npm run test:cov
|
||||
- run: npm run codecov-publish
|
||||
env:
|
||||
CI: true
|
||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
|
||||
- name: SonarCloud Scan
|
||||
uses: SonarSource/sonarcloud-github-action@master
|
||||
env:
|
||||
|
@ -10,7 +10,7 @@
|
||||

|
||||
[](https://www.npmjs.com/package/dockview)
|
||||
[](https://github.com/mathuo/dockview/actions?query=workflow%3ACI)
|
||||
[](https://codecov.io/gh/mathuo/dockview/branch/master)
|
||||
[](https://sonarcloud.io/dashboard?id=mathuo_dockview)
|
||||
[](https://sonarcloud.io/dashboard?id=mathuo_dockview)
|
||||
[](https://bundlephobia.com/result?p=dockview)
|
||||
|
||||
|
@ -12,5 +12,6 @@ module.exports = {
|
||||
"/node_modules/",
|
||||
"<rootDir>packages/*/src/__tests__/",
|
||||
],
|
||||
coverageDirectory: "coverage"
|
||||
coverageDirectory: "coverage",
|
||||
testResultsProcessor: 'jest-sonar-reporter',
|
||||
};
|
||||
|
@ -2,7 +2,7 @@
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.16",
|
||||
"command": {
|
||||
"publish": {
|
||||
"message": "chore(release): publish %s"
|
||||
|
2
packages/dockview-demo/package-lock.json
generated
2
packages/dockview-demo/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "splitview-demo",
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.16",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "splitview-demo",
|
||||
"private": true,
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.16",
|
||||
"description": "Demo project for https://github.com/mathuo/dockview",
|
||||
"scripts": {
|
||||
"build": "npm run build-webpack && npm run build-storybook",
|
||||
@ -14,7 +14,7 @@
|
||||
"author": "https://github.com/mathuo",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"dockview": "^0.0.15",
|
||||
"dockview": "^0.0.16",
|
||||
"react": "^17.0.1",
|
||||
"react-dom": "^17.0.1"
|
||||
},
|
||||
|
@ -10,7 +10,7 @@
|
||||

|
||||
[](https://www.npmjs.com/package/dockview)
|
||||
[](https://github.com/mathuo/dockview/actions?query=workflow%3ACI)
|
||||
[](https://codecov.io/gh/mathuo/dockview/branch/master)
|
||||
[](https://sonarcloud.io/dashboard?id=mathuo_dockview)
|
||||
[](https://sonarcloud.io/dashboard?id=mathuo_dockview)
|
||||
[](https://bundlephobia.com/result?p=dockview)
|
||||
|
||||
|
2
packages/dockview/package-lock.json
generated
2
packages/dockview/package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dockview",
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.16",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dockview",
|
||||
"version": "0.0.15",
|
||||
"version": "0.0.16",
|
||||
"description": "Zero dependency layout manager supporting tabs, grids and splitviews with ReactJS support",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"types": "./dist/cjs/index.d.ts",
|
||||
|
@ -1,20 +1,20 @@
|
||||
sonar.projectKey=mathuo_dockview
|
||||
sonar.organization=dockview
|
||||
|
||||
sonar.inclusions=packages/dockview/**/*
|
||||
sonar.inclusions=packages/dockview/src/**/*
|
||||
sonar.exclusions=packages/dockview/src/__tests__/**
|
||||
sonar.tests=packages/dockview/src/__tests__
|
||||
|
||||
sonar.testExecutionReportPaths=packages/dockview/test-report.xml
|
||||
sonar.javascript.lcov.reportPaths=packages/dockview/coverage/lcov.info
|
||||
sonar.testExecutionReportPaths=test-report.xml
|
||||
sonar.javascript.lcov.reportPaths=coverage/lcov.info
|
||||
|
||||
# This is the name and version displayed in the SonarCloud UI.
|
||||
#sonar.projectName=dockview
|
||||
#sonar.projectVersion=1.0
|
||||
|
||||
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
|
||||
#sonar.sources=.
|
||||
sonar.sources=packages
|
||||
|
||||
# Encoding of the source code. Default is default system encoding
|
||||
#sonar.sourceEncoding=UTF-8
|
||||
sonar.sourceEncoding=UTF-8
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user