Merge branch 'main' of github.com:jcalixte/tps

This commit is contained in:
Julien Calixte
2023-08-09 11:00:19 +02:00
5 changed files with 6 additions and 5 deletions

View File

@@ -43,7 +43,7 @@
<li class="takt focusable">Takt</li>
<li class="one-piece-flow focusable">One piece flow</li>
<li class="pull-system focusable">
<a href="/feature-flow.html">Pull system</a>
<a href="/pull-system.html">Pull system</a>
</li>
</ul>
</section>

View File

@@ -3,15 +3,15 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Interactive Feature flow</title>
<title>Interactive Pull System</title>
<meta
name="description"
content="Author: Julien Calixte,
My understanding of how a feature flow
My understanding of how a pull system
can help team prioritize."
/>
<link rel="stylesheet" href="core.css" />
<link rel="stylesheet" href="feature-flow.css" />
<link rel="stylesheet" href="pull-system.css" />
<link rel="icon" href="people-improvement.svg" />
<link rel="mask-icon" href="people-improvement.svg" color="#ffffff" />
</head>

View File

@@ -1,5 +1,6 @@
<template>
<div class="flow-intro">
<h2>What's the fatest way to deliver an app?</h2>
<p>
How good are we to succeed a project? Delivering the features at the good
quality and at the right time. We're pretty bad at it and there is a lot

View File

@@ -9,7 +9,7 @@ export default defineConfig({
rollupOptions: {
input: {
index: 'index.html',
'feature-flow': 'feature-flow.html'
'pull-system': 'pull-system.html'
}
}
},