Skip to content

Commit

Permalink
deps: visyn_scripts 11
Browse files Browse the repository at this point in the history
  • Loading branch information
puehringer committed Sep 5, 2024
1 parent fe4ef89 commit 1186351
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 14 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
name: release
name: Create a new release PR

on:
workflow_dispatch:
inputs:
release_version:
type: string
description: 'The next version to release'
required: true

on: workflow_dispatch

jobs:
release:
uses: datavisyn/github-workflows/.github/workflows/release-source.yml@main
secrets: inherit
uses: datavisyn/github-workflows/.github/workflows/release-source.yml@feat-automate-releases-releasenotes
secrets: inherit
with:
release_version: ${{ inputs.release_version }}
18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
"build": "yarn run clean && yarn run compile && yarn run copy",
"clean": "visyn_scripts clean build dist lib",
"codegen:openapi": "npx @rtk-query/codegen-openapi ./src/codegen.ts",
"compile:watch": "visyn_scripts compile --watch",
"compile": "visyn_scripts compile",
"compile:watch": "visyn_scripts compile --watch -p tsconfig.lenient.json",
"compile": "visyn_scripts compile -p tsconfig.lenient.json",
"compile:strict:watch": "visyn_scripts compile --watch",
"compile:strict": "visyn_scripts compile",
"copy": "visyn_scripts copy",
"delete-dependencies": "visyn_scripts clean node_modules",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/app_template.tar.gz *",
Expand All @@ -49,15 +51,15 @@
"bundle:prod": "visyn_scripts bundle --mode production --env workspace_mode=single"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.2",
"react-redux": "^8.0.2",
"visyn_core": "^10.0.3",
"visyn_scripts": "v9.0.0"
"@reduxjs/toolkit": "^1.9.7",
"react-redux": "^8.1.3",
"visyn_core": "^13.0.0",
"visyn_scripts": "^11.1.1"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@playwright/test": "^1.46.1",
"@rtk-query/codegen-openapi": "^1.2.0",
"playwright": "^1.44.0"
"playwright": "^1.46.1"
},
"resolutions": {
"@types/react": "~18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==2.0.1
sqlmodel==0.0.8
sse-starlette==1.6.1
visyn_core>=10.0.3,<11.0.0
visyn_core>=13.0.0,<14.0.0
12 changes: 12 additions & 0 deletions tsconfig.lenient.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": "visyn_scripts/config/tsconfig.lenient.template.json",
"compilerOptions": {
"jsx": "react",
"outDir": "./dist",
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"tsd.d.ts"
]
}

0 comments on commit 1186351

Please sign in to comment.