diff --git a/README.rst b/README.rst index 8642e0d5b..2a2f90467 100644 --- a/README.rst +++ b/README.rst @@ -38,7 +38,7 @@ Installation To install this header into your Open edX micro-frontend, run the following command in your MFE: -``npm i --save @edx/frontend-component-header`` +``npm i --save @opencraft/frontend-component-header`` This will make the component available to be imported into your application. @@ -78,12 +78,12 @@ Build a production distribution:: .. |Build Status| image:: https://api.travis-ci.com/edx/frontend-component-header.svg?branch=master :target: https://travis-ci.com/edx/frontend-component-header .. |Codecov| image:: https://img.shields.io/codecov/c/github/edx/frontend-component-header - :target: @edx/frontend-component-header -.. |npm_version| image:: https://img.shields.io/npm/v/@edx/frontend-component-header.svg - :target: @edx/frontend-component-header -.. |npm_downloads| image:: https://img.shields.io/npm/dt/@edx/frontend-component-header.svg - :target: @edx/frontend-component-header -.. |license| image:: https://img.shields.io/npm/l/@edx/frontend-component-header.svg - :target: @edx/frontend-component-header + :target: @opencraft/frontend-component-header +.. |npm_version| image:: https://img.shields.io/npm/v/@opencraft/frontend-component-header.svg + :target: @opencraft/frontend-component-header +.. |npm_downloads| image:: https://img.shields.io/npm/dt/@opencraft/frontend-component-header.svg + :target: @opencraft/frontend-component-header +.. |license| image:: https://img.shields.io/npm/l/@opencraft/frontend-component-header.svg + :target: @opencraft/frontend-component-header .. |semantic-release| image:: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg :target: https://github.com/semantic-release/semantic-release diff --git a/example/index.js b/example/index.js index e9b44a531..09f877d6b 100644 --- a/example/index.js +++ b/example/index.js @@ -4,7 +4,7 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { initialize, getConfig, subscribe, APP_READY } from '@edx/frontend-platform'; import { AppContext, AppProvider } from '@edx/frontend-platform/react'; -import Header from '@edx/frontend-component-header'; +import Header from '@opencraft/frontend-component-header'; import './index.scss'; diff --git a/example/index.scss b/example/index.scss index fb5123d2c..c73b5804c 100644 --- a/example/index.scss +++ b/example/index.scss @@ -3,4 +3,4 @@ @import "@edx/paragon/scss/core/core"; @import "@edx/brand/paragon/overrides"; -@import "@edx/frontend-component-header/index"; +@import "@opencraft/frontend-component-header/index"; diff --git a/package-lock.json b/package-lock.json index 017b9882c..9cf3a1751 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@edx/frontend-component-header", + "name": "@opencraft/frontend-component-header", "version": "1.0.0-semantically-released", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@edx/frontend-component-header", + "name": "@opencraft/frontend-component-header", "version": "1.0.0-semantically-released", "license": "AGPL-3.0", "dependencies": { diff --git a/package.json b/package.json index 2eabf1367..525559b1c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@edx/frontend-component-header", + "name": "@opencraft/frontend-component-header", "version": "1.0.0-semantically-released", "description": "The standard header for Open edX", "main": "dist/index.js", @@ -24,14 +24,14 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/openedx/frontend-component-header.git" + "url": "git+https://github.com/open-craft/frontend-component-header.git" }, "author": "edX", "license": "AGPL-3.0", "bugs": { - "url": "https://github.com/openedx/frontend-component-header/issues" + "url": "https://github.com/open-craft/frontend-component-header/issues" }, - "homepage": "https://github.com/openedx/frontend-component-header#readme", + "homepage": "https://github.com/open-craft/frontend-component-header#readme", "devDependencies": { "@edx/brand": "npm:@edx/brand-openedx@1.2.0", "@edx/browserslist-config": "^1.1.1", diff --git a/webpack.dev.config.js b/webpack.dev.config.js index db6f19674..ef3672cf5 100644 --- a/webpack.dev.config.js +++ b/webpack.dev.config.js @@ -9,7 +9,7 @@ module.exports = createConfig('webpack-dev', { }, resolve: { alias: { - '@edx/frontend-component-header': path.resolve(__dirname, 'src'), + '@opencraft/frontend-component-header': path.resolve(__dirname, 'src'), }, }, });