From e9f9ffaecca8658f701739dbdac8b7be9c677be8 Mon Sep 17 00:00:00 2001 From: Youssef Amr El-Shehaby Date: Thu, 23 Nov 2023 19:58:17 +0200 Subject: [PATCH] Update version to 0.1.0 and update README --- README.md | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b520d53..bcdea49 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ A convenient extension for searching and creating page and layout files in a Next.js application project. +## Motivation + +With the introduction of [Next.js 13](https://nextjs.org/), the `app` directory is now the default location for page and layout files. However, every page and layout file must be created manually and must be named with the `page.jsx` or `layout.jsx` (or `.tsx` for TypeScript projects). This extension aims to make it easier to create and search for page and layout files through commands and custom tree views. + ## Features Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file. @@ -14,7 +18,7 @@ For example if there is an image subfolder under your extension project workspac ## Requirements -This extension works in Next.js and SvelteKit projects **only**. +This extension works in Next.js 13 projects with `app` directory enabled **only**. ## Known Issues diff --git a/package.json b/package.json index 9b763c3..d331905 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "project-explorer", "displayName": "Project Explorer", "description": "An extension for searching and creating page and layout files in a Next.js application project.", - "version": "0.0.1", + "version": "0.1.0", "engines": { "vscode": "^1.84.0" },