Skip to content
Open
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
11 changes: 10 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,22 @@
"version": "0.2.0",
"configurations": [
{
"name": "Chrome",
"name": "Storybook (Chrome)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:6006",
"preLaunchTask": "Start Dev Server",
"postDebugTask": "Terminate All Tasks",
"webRoot": "${workspaceFolder}/packages/components"
},
{
"name": "Monaco (Chrome)",
"type": "chrome",
"request": "launch",
"url": "http://localhost:5173",
"preLaunchTask": "Start Monaco Dev Server",
"postDebugTask": "Terminate All Tasks",
"webRoot": "${workspaceFolder}/packages/monaco"
}
]
}
19 changes: 19 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@
],
"isBackground": true
},
{
"label": "Start Monaco Dev Server",
"type": "shell",
"command": "npm run dev:monaco",
"problemMatcher": [
{
"owner": "typescript",
"pattern": {
"regexp": ""
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": ".*"
}
}
],
"isBackground": true
},
{
"label": "Terminate All Tasks",
"command": "echo ${input:terminate}",
Expand Down
2 changes: 2 additions & 0 deletions build/unpublish-npm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ REGISTRY="https://npmjs-registry.ivyteam.ch/"

npm unpublish "@axonivy/ui-icons@${1}" --registry $REGISTRY
npm unpublish "@axonivy/ui-components@${1}" --registry $REGISTRY
npm unpublish "@axonivy/jsonrpc@${1}" --registry $REGISTRY
npm unpublish "@axonivy/monaco@${1}" --registry $REGISTRY
6 changes: 3 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export default tseslint.config(
ignores: ['**/dev-packages/**', '**/.storybook/**']
},
{
name: 'packages/core',
files: ['packages/core/**/*.{js,mjs,cjs,ts,jsx,tsx}'],
name: 'packages/monaco',
files: ['packages/monaco/**/*.{js,mjs,cjs,ts,jsx,tsx}'],
rules: {
'@typescript-eslint/no-explicit-any': 'off'
'@typescript-eslint/no-namespace': 'off'
}
}
);
221 changes: 217 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"lint:fix": "eslint --fix",
"lint:inspect": "eslint --inspect-config",
"dev": "npm run dev --workspace=@axonivy/ui-components",
"dev:monaco": "npm run dev --workspace=@axonivy/monaco",
"test": "npm run test --workspace=@axonivy/ui-components",
"test:ci": "lerna run test:ci",
"publish:next": "lerna publish --exact --canary --preid next --pre-dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes"
Expand Down
2 changes: 0 additions & 2 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@
"build:storybook": "storybook build",
"dev": "storybook dev -p 6006 --no-open",
"type": "tsc --noEmit --emitDeclarationOnly false",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
"test": "vitest",
"test:ci": "vitest --watch=false"
}
Expand Down
Loading
Loading