chore: fix packages version

This commit is contained in:
himself65 2023-04-13 18:33:21 -05:00
parent f902d0c324
commit 3954f309aa
11 changed files with 588 additions and 7 deletions

2
.gitignore vendored
View File

@ -5,7 +5,7 @@
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.yarn/versions
# compiled output
*dist

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -11,5 +11,9 @@ npmPublishRegistry: 'https://registry.npmjs.org'
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: '@yarnpkg/plugin-interactive-tools'
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: '@yarnpkg/plugin-version'
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: '@yarnpkg/plugin-workspace-tools'
yarnPath: .yarn/releases/yarn-3.5.0.cjs

View File

@ -1,5 +1,5 @@
cacheFolder: '../../.yarn/cache'
# deferredVersionFolder: '../../.yarn/versions'
deferredVersionFolder: '../../.yarn/versions'
globalFolder: '../../.yarn/global'
installStatePath: '../../.yarn/install-state.gz'
patchFolder: '../../.yarn/patches'

View File

@ -2,7 +2,7 @@
"name": "@affine/electron",
"productName": "AFFiNE",
"private": true,
"version": "0.0.0",
"version": "0.5.2",
"author": "affine",
"description": "AFFiNE App",
"homepage": "https://github.com/toeverything/AFFiNE",

View File

@ -1,6 +1,6 @@
{
"name": "AFFiNE",
"version": "0.5.0",
"version": "0.5.2",
"private": true,
"author": "toeverything",
"license": "MPL-2.0",

View File

@ -1,7 +1,6 @@
{
"name": "@affine/component",
"private": true,
"version": "0.3.1",
"main": "./src/index.ts",
"scripts": {
"storybook": "storybook dev -p 6006",

View File

@ -1,6 +1,5 @@
{
"name": "@affine/i18n",
"version": "0.1.0",
"description": "",
"type": "module",
"main": "src/index.ts",

View File

@ -1,6 +1,6 @@
{
"name": "@affine/octobase-node",
"version": "0.0.0",
"private": true,
"main": "index.js",
"types": "index.d.ts",
"napi": {

View File

@ -1,6 +1,7 @@
{
"name": "@toeverything/y-indexeddb",
"type": "module",
"version": "0.5.2",
"scripts": {
"build": "vite build"
},