Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bcakmakoglu committed Mar 7, 2023
1 parent 36a12a6 commit 619ce7f
Show file tree
Hide file tree
Showing 19 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions docs/src/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { resolve } from 'path'
import { readdirSync, statSync } from 'fs'
import { resolve } from 'node:path'
import { readdirSync, statSync } from 'node:fs'
import type { DefaultTheme, HeadConfig } from 'vitepress'
import { defineConfigWithTheme } from 'vitepress'
import WindiCSS from 'vite-plugin-windicss'
Expand Down
4 changes: 2 additions & 2 deletions docs/src/.vitepress/plugins/changelog.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { copyFile, existsSync, mkdirSync, readdirSync, statSync } from 'fs'
import { resolve } from 'path'
import { copyFile, existsSync, mkdirSync, readdirSync, statSync } from 'node:fs'
import { resolve } from 'node:path'

interface ChangelogFile {
path: string
Expand Down
4 changes: 2 additions & 2 deletions docs/src/.vitepress/plugins/copy.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { existsSync, readFileSync } from 'fs'
import { resolve } from 'path'
import { existsSync, readFileSync } from 'node:fs'
import { resolve } from 'node:path'
import type { Plugin } from 'vite'

export function copyVueFlowPlugin(): Plugin {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/.vitepress/windi.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { defineConfig } from 'windicss/helpers'
import typography from 'windicss/plugin/typography'
import scrollbar from '@windicss/plugin-scrollbar'
Expand Down
2 changes: 1 addition & 1 deletion packages/background/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/background/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'

export default withConfig({
Expand Down
2 changes: 1 addition & 1 deletion packages/controls/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/controls/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'
import svgLoader from 'vite-svg-loader'

Expand Down
4 changes: 2 additions & 2 deletions packages/core/patch/slots.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { readFile, writeFile } = require('fs/promises')
const { resolve } = require('path')
const { readFile, writeFile } = require('node:fs/promises')
const { resolve } = require('node:path')

/**
* This is a workaround until slots can be properly typed from inside the VueFlow component
Expand Down
2 changes: 1 addition & 1 deletion packages/core/vite.config.iife.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import VueMacros from 'unplugin-vue-macros/vite'
Expand Down
2 changes: 1 addition & 1 deletion packages/core/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import VueMacros from 'unplugin-vue-macros/vite'
Expand Down
2 changes: 1 addition & 1 deletion packages/minimap/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/minimap/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'

export default withConfig({
Expand Down
2 changes: 1 addition & 1 deletion packages/node-resizer/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/node-resizer/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'
import vueTypes from 'vite-plugin-vue-type-imports'

Expand Down
2 changes: 1 addition & 1 deletion packages/node-toolbar/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/node-toolbar/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'

export default withConfig({
Expand Down
2 changes: 1 addition & 1 deletion packages/pathfinding-edge/src/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
2 changes: 1 addition & 1 deletion packages/pathfinding-edge/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolve } from 'path'
import { resolve } from 'node:path'
import { withConfig } from '@tooling/vite-config'

export default withConfig({
Expand Down

2 comments on commit 619ce7f

@vercel
Copy link

@vercel vercel bot commented on 619ce7f Mar 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 619ce7f Mar 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.