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
<template> | |
<ul> | |
<li v-for="(breadcrumb, index) in breadcrumbs" :key="index"> | |
<Breadcrumb :name="breadcrumb.name" :url="breadcrumb.url" /> | |
</li> | |
</ul> | |
</template> | |
<script> | |
import { defineComponent } from 'vue'; |
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
<template> | |
<a :href="url">{{ name }}</a> | |
</template> | |
<script> | |
import { defineComponent } from 'vue'; | |
export default defineComponent({ | |
name: 'App', |
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
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
extends: [ | |
'plugin:vue/base', | |
'plugin:vue/essential', | |
'plugin:vue/strongly-recommended', | |
'plugin:vue/recommended', |
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
/* eslint-disable quote-props */ | |
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
extends: [ | |
'plugin:vue/base', | |
'plugin:vue/vue3-essential', | |
'plugin:vue/vue3-recommended', |
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
/* eslint-disable quote-props */ | |
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
extends: [ | |
'plugin:vue/base', | |
'plugin:vue/vue3-essential', | |
'plugin:vue/vue3-recommended', |
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
@lloydjatkinson ➜ /workspaces/astro-integration-demo/packages/astro-integration-demo-components (master ✗) $ pnpm run test | |
> @lloydjatkinson/[email protected] test /workspaces/astro-integration-demo/packages/astro-integration-demo-components | |
> mocha --parallel --timeout 15000 | |
error Transform failed with 1 error: | |
/workspaces/astro-integration-demo/node_modules/.pnpm/[email protected][email protected]/node_modules/astro-component-tester/.test/test�mS�z/src/pages/index.astro#sourceMappingURL:3:165: ERROR: Syntax error "\x08" | |
File: | |
/workspaces/astro-integration-demo/node_modules/.pnpm/[email protected][email protected]/node_modules/astro-component-tester/.test/test�mS�z/src/pages/index.astro#sourceMappingURL |
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
@lloydjatkinson ➜ /workspaces/astro-example-integration (master ✗) $ pnpm -r install | |
Scope: all 3 workspace projects | |
Progress: resolved 91, reused 90, downloaded 0, added 0, done | |
ERR_PNPM_PEER_DEP_ISSUES Unmet peer dependencies | |
packages/astro-example-integration-components | |
└─┬ astro-component-tester | |
└── ✕ missing peer astro@>=1.0.0-beta.0 | |
Peer dependencies that should be installed: | |
astro@>=1.0.0-beta.0 |
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
@lloydjatkinson ➜ /workspaces/astro-example-integration/packages/astro-example-integration-components (master ✗) $ pnpm run test | |
> @lloydjatkinson/[email protected] test /workspaces/astro-example-integration/packages/astro-example-integration-components | |
> mocha --parallel --timeout 15000 | |
1:53:51 PM [vite] Error when evaluating SSR module /@fs/workspaces/astro-example-integration/packages/astro-example-integration-components/src/Component.astro: | |
Error: Cannot find module 'astro/internal' imported from '/workspaces/astro-example-integration/packages/astro-example-integration-components/src/Component.astro' | |
at viteResolve (/workspaces/astro-example-integration/node_modules/.pnpm/[email protected]/node_modules/vite/dist/node/chunks/dep-27bc1ab8.js:58548:25) | |
at nodeImport (/workspaces/astro-example-integration/node_modules/.pnpm/[email protected]/node_modules/vite/dist/node/chunks/dep-27bc1ab8.js:58583:15) |
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
name: PR Closed on Development Feature Branch | |
on: | |
pull_request: | |
types: [closed] | |
branches-ignore: | |
- master | |
jobs: | |
delete-infrastructure: |
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
<template> | |
<div> | |
<slot | |
v-if="showLoadingState" | |
name="loading"> | |
<div> | |
Loading... | |
</div> | |
</slot> |