Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Sep 27, 2022
1 parent 98c14a5 commit accd284
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 271 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: pnpm install

- name: Publish to npm
run: pnpm --filter './' --filter './.stacks' --filter './.stacks/artisan' --filter './.stacks/components' --filter './.stacks/web-components' --filter './.stacks/functions' publish --access public --no-git-checks
run: pnpm --filter './.stacks/components' --filter './.stacks/web-components' --filter './.stacks/functions' publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

Expand Down
2 changes: 0 additions & 2 deletions .stacks/.eslintrc-auto-import.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"asyncComputed": true,
"author": true,
"autoResetRef": true,
"bcrypt": true,
"beforeAll": true,
"beforeEach": true,
"chai": true,
Expand Down Expand Up @@ -40,7 +39,6 @@
"defineComponent": true,
"describe": true,
"docs": true,
"driver": true,
"eagerComputed": true,
"effectScope": true,
"expect": true,
Expand Down
4 changes: 0 additions & 4 deletions .stacks/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ declare global {
const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
const author: typeof import('../config/library')['author']
const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
const bcrypt: typeof import('../config/hashing')['bcrypt']
const beforeAll: typeof import('vitest')['beforeAll']
const beforeEach: typeof import('vitest')['beforeEach']
const chai: typeof import('vitest')['chai']
Expand Down Expand Up @@ -41,7 +40,6 @@ declare global {
const defineComponent: typeof import('vue')['defineComponent']
const describe: typeof import('vitest')['describe']
const docs: typeof import('../config/docs')['default']
const driver: typeof import('../config/hashing')['driver']
const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
const effectScope: typeof import('vue')['effectScope']
const expect: typeof import('vitest')['expect']
Expand Down Expand Up @@ -311,7 +309,6 @@ declare module '@vue/runtime-core' {
readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
readonly author: UnwrapRef<typeof import('../config/library')['author']>
readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
readonly bcrypt: UnwrapRef<typeof import('../config/hashing')['bcrypt']>
readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
readonly chai: UnwrapRef<typeof import('vitest')['chai']>
Expand Down Expand Up @@ -343,7 +340,6 @@ declare module '@vue/runtime-core' {
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
readonly describe: UnwrapRef<typeof import('vitest')['describe']>
readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
readonly driver: UnwrapRef<typeof import('../config/hashing')['driver']>
readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
readonly expect: UnwrapRef<typeof import('vitest')['expect']>
Expand Down
1 change: 1 addition & 0 deletions .stacks/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export {}

declare module '@vue/runtime-core' {
export interface GlobalComponents {
CommandPalette: typeof import('./../components/CommandPalette.vue')['default']
Counter: typeof import('./../components/Buttons/Counter.vue')['default']
Demo: typeof import('./../components/Demo.vue')['default']
HelloWorld: typeof import('./../components/HelloWorld.vue')['default']
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@
"globalFroms",
"npmrc",
"kolorist",
"julr"
"julr",
"headlessui"
],
"html.customData": [
"./.stacks/custom-elements.json"
Expand Down

0 comments on commit accd284

Please sign in to comment.