Skip to content

Commit

Permalink
chore: update workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
zcf0508 committed Aug 24, 2023
1 parent e69493e commit 56291d5
Show file tree
Hide file tree
Showing 39 changed files with 1,053 additions and 379 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: process.cwd(),
project: ['tsconfig.json', './playground/tsconfig.json', './vscode/tsconfig.json'],
project: ['tsconfig.json', './packages/playground/tsconfig.json', './packages/vscode/tsconfig.json'],
extraFileExtensions: ['.vue'],
},
plugins: [
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ jobs:

- name: Publish to VSCE
run: npm run publish
working-directory: ./vscode
working-directory: ./packages/vscode
env:
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}}
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Nuxt dev/build outputs
.output
.nuxt
.nitro
.cache
packages/playground/dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example


node_modules
**/node_modules/*
.nuxt
vscode/dist
packages/vscode/dist
*.vsix
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"dev": "nodemon",
"dev:ext": "npm -C vscode run dev",
"build": "tsup",
"play": "npm -C playground run dev",
"play": "npm -C packages/playground run dev",
"lint": "eslint .",
"test": "vitest",
"typecheck": "tsc --noEmit",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export default defineNuxtConfig({
'@unocss/nuxt',
],
alias:{
'vue-hook-optimizer': path.resolve(__dirname, '../src'),
'vue-hook-optimizer': path.resolve(__dirname, '../../src'),
},
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"baseUrl": "./",
"paths": {
"vue-hook-optimizer": [
"../src"
"../../src"
]
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
23 changes: 0 additions & 23 deletions playground/.gitignore

This file was deleted.

Loading

0 comments on commit 56291d5

Please sign in to comment.