-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
403819b
commit 37b34bb
Showing
11 changed files
with
107 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { CAC } from 'cac' | ||
import { component as makeComponent } from '../scripts/make' | ||
|
||
async function updateCommands(artisan: CAC) { | ||
artisan | ||
.command('update', 'Updates the dependencies & framework core') | ||
.option('-d, --dependencies', 'Updates the dependencies') | ||
.option('-f, --framework', 'Updates the framework core') | ||
.option('-a, --all', 'Updates the dependencies & framework core') | ||
.action(async (options: any) => { | ||
await makeComponent(options) | ||
}) | ||
} | ||
|
||
export { updateCommands } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ow3/hello-world-vue", | ||
"type": "module", | ||
"version": "0.33.3", | ||
"version": "0.0.0", | ||
"packageManager": "[email protected]", | ||
"description": "Your Vue component library description", | ||
"author": "Chris Breuer", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ow3/hello-world-fx", | ||
"type": "module", | ||
"version": "0.33.3", | ||
"version": "0.0.0", | ||
"packageManager": "[email protected]", | ||
"description": "Your function library description.", | ||
"author": "Chris Breuer", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ow3/hello-world-elements", | ||
"type": "module", | ||
"version": "0.33.3", | ||
"version": "0.0.0", | ||
"packageManager": "[email protected]", | ||
"description": "Your framework agnostic web component library description.", | ||
"author": "Chris Breuer", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
/** | ||
* This is where you define the components that need to | ||
* be included in your library. Ensure that those | ||
* component names exist in ../components/** | ||
* components exist in ../components/** | ||
*/ | ||
|
||
// TODO: implement to be triggered in correct Vite plugin build hook | ||
// needs to generate a file that exports all components/defines the web components | ||
const components = [ | ||
['Counter', 'RenamedComponent'], | ||
'ToggleDark', | ||
'Logo', | ||
'HelloWorld', | ||
'Demo', | ||
] | ||
const components = ['CommandPalette'] | ||
|
||
export { components } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ow3/command-palette", | ||
"type": "module", | ||
"version": "0.33.3", | ||
"version": "0.0.0", | ||
"packageManager": "[email protected]", | ||
"description": "The easy way to build your command palette.", | ||
"author": "Chris Breuer", | ||
|