create-catalyst-app-internal 0.0.2-canary.4 → 0.0.2-canary.5

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,7 +1,7 @@
1
1
  {
2
2
  "name": "create-catalyst-app-internal",
3
3
  "bin": "scripts/cli.cjs",
4
- "version": "0.0.2-canary.4",
4
+ "version": "0.0.2-canary.5",
5
5
  "description": "cli package to scaffold Catalyst application",
6
6
  "dependencies": {
7
7
  "commander": "^8.2.0",
@@ -1,5 +1,5 @@
1
1
  import React from "react"
2
- import { Head, Body } from "catalyst-core-internal"
2
+ import { Head, Body } from "catalyst-core"
3
3
 
4
4
  function Document(props) {
5
5
  return (
@@ -1,8 +1,8 @@
1
1
  import React from "react"
2
2
  import "./styles"
3
3
  import { hydrateRoot } from "react-dom/client"
4
- import { RouterProvider } from "catalyst-core-internal"
5
- import clientRouter from "catalyst-core-internal/router/ClientRouter"
4
+ import { RouterProvider } from "catalyst-core"
5
+ import clientRouter from "catalyst-core/router/ClientRouter"
6
6
 
7
7
  const { __ROUTER_INITIAL_DATA__: routerInitialData } = window
8
8
 
@@ -24,6 +24,6 @@
24
24
  "eslint-plugin-react-hooks": "^4.6.0"
25
25
  },
26
26
  "dependencies": {
27
- "catalyst-core-internal": "^0.0.2-canary.6"
27
+ "catalyst-core": "^0.0.2-canary.1"
28
28
  }
29
29
  }
@@ -1,5 +1,5 @@
1
1
  import React from "react"
2
- import { Outlet } from "catalyst-core-internal"
2
+ import { Outlet } from "catalyst-core"
3
3
 
4
4
  const App = () => {
5
5
  return (
@@ -1,5 +1,5 @@
1
1
  import React, { Suspense } from "react"
2
- import { RouterDataProvider, MetaTag } from "catalyst-core-internal"
2
+ import { RouterDataProvider, MetaTag } from "catalyst-core"
3
3
  import App from "@containers/App/index.jsx"
4
4
  import routes from "./index.jsx"
5
5
 
@@ -2,8 +2,8 @@ import React from "react"
2
2
  import "./styles"
3
3
  import { hydrateRoot } from "react-dom/client"
4
4
  import { Provider } from "react-redux"
5
- import { RouterProvider } from "catalyst-core-internal"
6
- import clientRouter from "catalyst-core-internal/router/ClientRouter"
5
+ import { RouterProvider } from "catalyst-core"
6
+ import clientRouter from "catalyst-core/router/ClientRouter"
7
7
  import configureStore from "@store"
8
8
 
9
9
  const { __ROUTER_INITIAL_DATA__: routerInitialData, __INITIAL_STATE__ } = window
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@reduxjs/toolkit": "1.9.3",
24
- "catalyst-core-internal": "^0.0.2-canary.6",
24
+ "catalyst-core": "^0.0.2-canary.1",
25
25
  "react-redux": "^8.1.3"
26
26
  },
27
27
  "devDependencies": {
@@ -1,5 +1,5 @@
1
1
  import React from "react"
2
- import { Outlet } from "catalyst-core-internal"
2
+ import { Outlet } from "catalyst-core"
3
3
 
4
4
  const App = () => {
5
5
  return (
@@ -1,5 +1,5 @@
1
1
  import React, { Suspense } from "react"
2
- import { RouterDataProvider, MetaTag } from "catalyst-core-internal"
2
+ import { RouterDataProvider, MetaTag } from "catalyst-core"
3
3
  import App from "@containers/App/index.jsx"
4
4
  import routes from "./index.jsx"
5
5
 
@@ -1,10 +1,9 @@
1
-
2
1
  import React from "react"
3
2
  import "./styles"
4
3
  import { hydrateRoot } from "react-dom/client"
5
4
  import { Provider } from "react-redux"
6
- import { RouterProvider } from "catalyst-core-internal"
7
- import clientRouter from "catalyst-core-internal/router/ClientRouter"
5
+ import { RouterProvider } from "catalyst-core"
6
+ import clientRouter from "catalyst-core/router/ClientRouter"
8
7
  import configureStore from "@store"
9
8
 
10
9
  const { __ROUTER_INITIAL_DATA__: routerInitialData, __INITIAL_STATE__ } = window
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@reduxjs/toolkit": "1.9.3",
24
- "catalyst-core-internal": "^0.0.2-canary.6",
24
+ "catalyst-core": "^0.0.2-canary.1",
25
25
  "react-redux": "^8.1.3"
26
26
  },
27
27
  "devDependencies": {
@@ -1,5 +1,5 @@
1
1
  import React from "react"
2
- import { Outlet } from "catalyst-core-internal"
2
+ import { Outlet } from "catalyst-core"
3
3
 
4
4
  const App = () => {
5
5
  return (
@@ -1,5 +1,5 @@
1
1
  import React, { Suspense } from "react"
2
- import { RouterDataProvider, MetaTag } from "catalyst-core-internal"
2
+ import { RouterDataProvider, MetaTag } from "catalyst-core"
3
3
  import App from "@containers/App/index.jsx"
4
4
  import routes from "./index.jsx"
5
5