Skip to content

Commit

Permalink
fix: scale settings select state (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmkx committed May 5, 2022
1 parent 043d104 commit ab1e034
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 29 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -42,7 +42,7 @@
"@types/semver": "^7.3.9",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@vueuse/core": "^8.4.1",
"@vueuse/core": "^8.4.2",
"bumpp": "^7.1.1",
"cross-env": "^7.0.3",
"cypress": "^7.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Expand Up @@ -15,7 +15,7 @@
"@antfu/utils": "^0.5.1",
"@slidev/parser": "workspace:*",
"@slidev/types": "workspace:*",
"@vueuse/core": "^8.4.1",
"@vueuse/core": "^8.4.2",
"@vueuse/head": "^0.7.6",
"@vueuse/motion": "^2.0.0-beta.18",
"codemirror": "^5.65.3",
Expand Down
40 changes: 20 additions & 20 deletions pnpm-lock.yaml

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

4 changes: 1 addition & 3 deletions scripts/demo.mjs
@@ -1,8 +1,6 @@
import path from 'path'
import { fileURLToPath } from 'url'
import fs from 'fs-extra'
import { installBrowsersWithProgressBar } from 'playwright-chromium/lib/install/installer.js'
import { $, cd } from 'zx'
import { $, cd, fs, path } from 'zx'

const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
Expand Down
3 changes: 1 addition & 2 deletions scripts/publish.mjs
@@ -1,5 +1,4 @@
import fs from 'fs-extra'
import { $ } from 'zx'
import { $, fs } from 'zx'

await fs.copyFile('README.md', 'packages/slidev/README.md')
await $`npx pnpm -r publish --access public --no-git-checks`
3 changes: 1 addition & 2 deletions scripts/release.mjs
@@ -1,9 +1,8 @@
/* eslint-disable @typescript-eslint/no-var-requires */
import { join } from 'path'
import { execSync } from 'child_process'
import fs from 'fs-extra'
import { objectMap } from '@antfu/utils'
import { $ } from 'zx'
import { $, fs } from 'zx'

execSync('npx bumpp package.json packages/*/package.json', { stdio: 'inherit' })

Expand Down

0 comments on commit ab1e034

Please sign in to comment.