next-ts-cli 1.0.4 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-ts-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Create production-ready web application with the Next.js",
5
5
  "author": "Daniele Rossino <daniele.rossino10@gmail.com>",
6
6
  "maintainers": [],
@@ -1,8 +1,5 @@
1
1
  {
2
- "mcpServers": {
3
- "shadcn": {
4
- "command": "npx",
5
- "args": ["shadcn@latest", "mcp"]
6
- }
7
- }
8
- }
2
+ "mcpServers": {
3
+
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "servers": {
3
+ }
4
+ }
@@ -4,6 +4,6 @@ import Home from "@/app/page";
4
4
  describe("Home Page", () => {
5
5
  it("renders home page", () => {
6
6
  render(<Home />);
7
- expect(screen.getByText("next-ts")).toBeDefined();
7
+ expect(screen.getByText("Start to edit")).toBeDefined();
8
8
  });
9
9
  });