-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove sdk from cli * update playground middleware * refactor exampleEndpoint to exampleMethod * update cli for nuxt * remove test method * update cli for next * remove test endpoints
- Loading branch information
1 parent
ef47d50
commit 59d826e
Showing
28 changed files
with
381 additions
and
439 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
module.exports = { | ||
extends: "@vue-storefront/eslint-config-integrations", | ||
rules: { | ||
"@typescript-eslint/no-unused-vars": "warn", | ||
"import/no-relative-packages": "off", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"import/extensions": "off", | ||
}, | ||
}; |
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,19 +1,20 @@ | ||
import { defineBuildConfig } from 'unbuild' | ||
// eslint-disable-next-line import/no-unresolved | ||
import { defineBuildConfig } from "unbuild"; | ||
|
||
export default defineBuildConfig({ | ||
rollup: { | ||
inlineDependencies: true, | ||
}, | ||
entries: ['src/index'], | ||
entries: ["src/index"], | ||
externals: [ | ||
'citty', | ||
'fsevents', | ||
'node:url', | ||
'node:buffer', | ||
'node:path', | ||
'node:child_process', | ||
'node:process', | ||
'node:path', | ||
'node:os', | ||
"citty", | ||
"fsevents", | ||
"node:url", | ||
"node:buffer", | ||
"node:path", | ||
"node:child_process", | ||
"node:process", | ||
"node:path", | ||
"node:os", | ||
], | ||
}) | ||
}); |
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,3 +1,3 @@ | ||
export const config = { | ||
integrationName: "boilerplate" | ||
} | ||
integrationName: "boilerplate", | ||
}; |
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
Oops, something went wrong.