Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit c8bff28

Browse files
committed
update ecommerce and facebook packages to npmjs
1 parent 36bdced commit c8bff28

File tree

7 files changed

+146
-99
lines changed

7 files changed

+146
-99
lines changed

package-lock.json

Lines changed: 138 additions & 91 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
},
3434
"dependencies": {
3535
"@heroicons/react": "^2.2.0",
36-
"@newfold-labs/wp-module-ecommerce": "^1.4.6",
37-
"@newfold-labs/wp-module-facebook": "^1.0.9",
36+
"@newfold/wp-module-ecommerce": "^1.4.7",
37+
"@newfold/wp-module-facebook": "^1.0.10",
3838
"@newfold/wp-module-runtime": "^1.1.0",
3939
"@newfold/ui-component-library": "^1.1.0",
4040
"@reduxjs/toolkit": "^2.5.0",

src/app/pages/ecommerce/page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import './styles.scss';
22
import { useContext } from '@wordpress/element';
33
import { useLocation, useNavigate, useSearchParams } from 'react-router-dom';
44
import { Page } from '@newfold/ui-component-library';
5-
import { NewfoldECommerce } from '@newfold-labs/wp-module-ecommerce';
6-
import '@newfold-labs/wp-module-ecommerce/bluehost.css';
5+
import { NewfoldECommerce } from '@newfold/wp-module-ecommerce';
6+
import '@newfold/wp-module-ecommerce/bluehost.css';
77
import AppStore from 'App/data/store';
88
import {
99
bluehostSettingsApiFetch,

src/app/pages/home/freeAddonsSection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FreePlugins } from '@newfold-labs/wp-module-ecommerce';
1+
import { FreePlugins } from '@newfold/wp-module-ecommerce';
22
import { useNotification } from 'App/components/notifications';
33

44
export const FreeAddonsSection = ( { props } ) => {

src/app/pages/home/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import WebinarsBanner from 'App/components/webinars-banner';
33
import AccountCard from './accountCard';
44
import HelpCard from './helpCard';
55
import WelcomeSection from './welcomeSection';
6-
import { WPSolutionsBanner } from '@newfold-labs/wp-module-ecommerce';
6+
import { WPSolutionsBanner } from '@newfold/wp-module-ecommerce';
77

88
const Home = () => {
99
return (

src/app/pages/home/welcomeSection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useContext } from '@wordpress/element';
22
import { useUpdateEffect } from 'react-use';
3-
import { OnboardingScreen } from '@newfold-labs/wp-module-ecommerce';
3+
import { OnboardingScreen } from '@newfold/wp-module-ecommerce';
44
import AppStore from 'App/data/store';
55
import { bluehostSettingsApiFetch } from 'App/util/helpers';
66
import { useNotification } from 'App/components/notifications';

src/app/pages/settings/socialMediaAccounts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
FacebookConnectPluginView,
55
facebookConnectHelper,
66
getFacebookUserProfileDetails,
7-
} from '@newfold-labs/wp-module-facebook';
7+
} from '@newfold/wp-module-facebook';
88

99
const SocialMediaAccounts = () => {
1010
const [ showModal, setShowModal ] = useState( false );

0 commit comments

Comments
 (0)