create-plasmic-app 0.0.102 → 0.0.103

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.
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.makeCustomRoot_file_router_codegen = void 0;
4
4
  function makeCustomRoot_file_router_codegen(_jsOrTs) {
5
- return `import { createRootRoute, HeadContent, Outlet, Scripts, Link } from '@tanstack/react-router'
5
+ return `import { createRootRoute, HeadContent, Outlet, Scripts } from '@tanstack/react-router'
6
6
  import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
7
7
  import { PlasmicRootProvider } from "@plasmicapp/react-web"
8
8
  import appCss from "../styles.css?url";
@@ -18,7 +18,7 @@ export const Route = createRootRoute({
18
18
  }),
19
19
  component: () => (
20
20
  <RootDocument>
21
- <PlasmicRootProvider Link={Link}>
21
+ <PlasmicRootProvider>
22
22
  <Outlet />
23
23
  <TanStackRouterDevtools />
24
24
  </PlasmicRootProvider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.102",
3
+ "version": "0.0.103",
4
4
  "description": "Create Plasmic-powered React apps",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -46,5 +46,5 @@
46
46
  "validate-npm-package-name": "^3.0.0",
47
47
  "yargs": "^16.2.0"
48
48
  },
49
- "gitHead": "d4a7bb5ccb1aa9e35db3b4c751a2473c001e1ad0"
49
+ "gitHead": "74a85a4ad10be4a50c0fcc53f0d073763d018fb8"
50
50
  }
@@ -1,7 +1,7 @@
1
1
  import { JsOrTs } from "../../../utils/types";
2
2
 
3
3
  export function makeCustomRoot_file_router_codegen(_jsOrTs: JsOrTs): string {
4
- return `import { createRootRoute, HeadContent, Outlet, Scripts, Link } from '@tanstack/react-router'
4
+ return `import { createRootRoute, HeadContent, Outlet, Scripts } from '@tanstack/react-router'
5
5
  import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
6
6
  import { PlasmicRootProvider } from "@plasmicapp/react-web"
7
7
  import appCss from "../styles.css?url";
@@ -17,7 +17,7 @@ export const Route = createRootRoute({
17
17
  }),
18
18
  component: () => (
19
19
  <RootDocument>
20
- <PlasmicRootProvider Link={Link}>
20
+ <PlasmicRootProvider>
21
21
  <Outlet />
22
22
  <TanStackRouterDevtools />
23
23
  </PlasmicRootProvider>