aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDivisionByZero <[email protected]>2024-04-10 15:10:45 +0200
committerGitHub <[email protected]>2024-04-10 15:10:45 +0200
commit200a38e76efc27e32f716472bdc4f4d39eff60d1 (patch)
tree7dea42a2509cc53d93a68eda0b76f5f29252000c
parentb505a70c8e52a3f64c6b7cb4e2888cf5d48aeefe (diff)
downloadfaker-200a38e76efc27e32f716472bdc4f4d39eff60d1.tar.xz
faker-200a38e76efc27e32f716472bdc4f4d39eff60d1.zip
docs: update roadmap for v9 (#2802)
-rw-r--r--docs/.vitepress/config.ts4
-rw-r--r--docs/about/roadmap/index.md4
-rw-r--r--docs/about/roadmap/v8.md7
-rw-r--r--docs/about/roadmap/v9.md6
4 files changed, 14 insertions, 7 deletions
diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts
index 22937a8d..88d3791c 100644
--- a/docs/.vitepress/config.ts
+++ b/docs/.vitepress/config.ts
@@ -243,6 +243,10 @@ const config: UserConfig<DefaultTheme.Config> = {
text: 'Roadmap',
link: '/about/roadmap/',
items: [
+ {
+ text: 'v9 - Tree-Shakeable Module-Functions',
+ link: '/about/roadmap/v9',
+ },
{ text: 'v8 - Make Faker Handier', link: '/about/roadmap/v8' },
{
text: 'v7 - Cleanup & Improvements',
diff --git a/docs/about/roadmap/index.md b/docs/about/roadmap/index.md
index 8be8ee4d..e7242781 100644
--- a/docs/about/roadmap/index.md
+++ b/docs/about/roadmap/index.md
@@ -9,6 +9,10 @@ Click on the specific versions for more details.
## Upcoming Versions
+- [v9 - Tree Shaking](v9.md)
+
+## Current Versions
+
- [v8 - Make Faker Handier](v8.html)
## Previous Versions
diff --git a/docs/about/roadmap/v8.md b/docs/about/roadmap/v8.md
index c43266df..2b827979 100644
--- a/docs/about/roadmap/v8.md
+++ b/docs/about/roadmap/v8.md
@@ -26,10 +26,3 @@ Finish the module shuffling.
Split the Faker class into smaller units so you don't have ship an entire locale if you only generate some strings and numbers.
[v8.1 Tasks](https://github.com/faker-js/faker/milestone/11)
-
-## v8.x - Tree-Shakeable Module-Functions
-
-Refactor modules to be tree shakeable.
-Potentially allowing individual Faker methods to be called by themselves.
-
-[v8.x Tasks](https://github.com/faker-js/faker/milestone/12)
diff --git a/docs/about/roadmap/v9.md b/docs/about/roadmap/v9.md
new file mode 100644
index 00000000..bf0aaea9
--- /dev/null
+++ b/docs/about/roadmap/v9.md
@@ -0,0 +1,6 @@
+## v9.0 - Tree-Shakeable Module-Functions
+
+Fix the issue of Faker not being tree shakeable.
+Potentially allowing individual Faker methods to be called by themselves.
+
+[v9.0 Tasks](https://github.com/faker-js/faker/milestone/12)