🚚 (pull system) rename to focus on pull system

This commit is contained in:
Julien Calixte
2023-08-05 00:01:47 +02:00
parent 768da3fb17
commit 93097b615e
4 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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