Skip to content

Commit

Permalink
Merge pull request #98 from VisActor/release/0.0.10
Browse files Browse the repository at this point in the history
[Auto release] release 0.0.10
  • Loading branch information
neuqzxy authored Nov 18, 2024
2 parents 4fb0e37 + 3a3b4eb commit 50fa536
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bug-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: node common/scripts/install-run-rush.js update --bypass-policy

- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy
run: node common/scripts/install-run-rush.js update --bypass-policy

- name: Build
run: node common/scripts/install-run-rush.js build -t @internal/bugserver-trigger
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

# Install rush
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy
run: node common/scripts/install-run-rush.js update --bypass-policy

- name: Create branch
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-main-to-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Install rush
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy
run: node common/scripts/install-run-rush.js update --bypass-policy

- name: Get version
id: package-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Update rush
run: node common/scripts/install-run-rush.js update --bypass-policy
- name: Install rush
run: node common/scripts/install-run-rush.js install --bypass-policy
run: node common/scripts/install-run-rush.js update --bypass-policy
- run: node common/scripts/install-run-rush.js build --only tag:package
- name: Pre unit test
run: cd packages/vstory && node ../../common/scripts/install-run-rushx.js test && cd ../..
Expand Down
4 changes: 2 additions & 2 deletions common/config/rush/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.8","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vstoryMain","version":"0.0.10","nextBump":"patch"}]
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"@arco-design/web-react": "2.46.1",
"@visactor/vstory": "workspace:0.0.8",
"@visactor/vstory": "workspace:0.0.10",
"@visactor/vutils": "~0.18.17",
"markdown-it": "^13.0.0",
"highlight.js": "^11.8.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vstory-core/src/core/canvas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class StoryCanvas implements IStoryCanvas {
return;
}
const canvas = document.createElement('canvas');
canvas.style.position = 'absolute';
// canvas.style.position = 'absolute';
canvas.id = `_visactor_story_canvas_${this._story.id}`;
this._canvas = canvas as any;
container.appendChild(canvas);
Expand Down
6 changes: 6 additions & 0 deletions packages/vstory/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"name": "@visactor/vstory",
"entries": [
{
"version": "0.0.10",
"tag": "@visactor/vstory_v0.0.10",
"date": "Mon, 18 Nov 2024 09:27:07 GMT",
"comments": {}
},
{
"version": "0.0.8",
"tag": "@visactor/vstory_v0.0.8",
Expand Down
7 changes: 6 additions & 1 deletion packages/vstory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log - @visactor/vstory

This log was last generated on Mon, 18 Nov 2024 08:14:14 GMT and should not be manually modified.
This log was last generated on Mon, 18 Nov 2024 09:27:07 GMT and should not be manually modified.

## 0.0.10
Mon, 18 Nov 2024 09:27:07 GMT

_Version update only_

## 0.0.8
Mon, 18 Nov 2024 08:14:14 GMT
Expand Down
2 changes: 1 addition & 1 deletion packages/vstory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@visactor/vstory",
"version": "0.0.8",
"version": "0.0.10",
"description": "",
"sideEffects": true,
"main": "cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion tools/bugserver-trigger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"ci": "ts-node --transpileOnly --skipProject ./scripts/trigger-test.ts"
},
"dependencies": {
"@visactor/vstory": "workspace:0.0.8"
"@visactor/vstory": "workspace:0.0.10"
},
"devDependencies": {
"@rushstack/eslint-patch": "~1.1.4",
Expand Down

0 comments on commit 50fa536

Please sign in to comment.