Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use @canonical org for package names. #1056

Merged
merged 1 commit into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions legacy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@maas-ui/legacy",
"name": "@canonical/maas-ui-legacy",
"version": "0.1.0",
"private": true,
"private": false,
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.prod.js",
"build-dev": "NODE_ENV=development webpack --config webpack.dev.js",
Expand Down Expand Up @@ -54,7 +54,7 @@
"webpack-merge": "4.2.2"
},
"dependencies": {
"@maas-ui/shared": "0.1.0",
"@canonical/maas-ui-shared": "0.1.0",
"@sentry/browser": "5.15.4",
"@sentry/integrations": "5.15.4",
"angular": "1.7.9",
Expand Down
2 changes: 1 addition & 1 deletion legacy/src/app/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import * as Integrations from "@sentry/integrations";

import configureRoutes from "./routes";
import bootstrap from "./bootstrap";
import { Footer, Header } from "@maas-ui/shared";
import { Footer, Header } from "@canonical/maas-ui-shared";

// filters
import {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maas-ui",
"version": "1.1.1",
"name": "maas-ui-monorepo",
"version": "1.1.1-monorepo",
"scripts": {
"build": "yarn build-shared",
"build-all": "yarn clean-all && yarn build-shared && yarn build-legacy && yarn build-ui && yarn copy-build",
Expand Down
2 changes: 1 addition & 1 deletion proxy/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@maas-ui/proxy",
"name": "@canonical/maas-ui-proxy",
"private": true,
"version": "0.1.0",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maas-ui/shared",
"private": true,
"name": "@canonical/maas-ui-shared",
"private": false,
"version": "0.1.0",
"main": "dist/index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions ui/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@maas-ui/ui",
"name": "@canonical/maas-ui",
"version": "1.1.1",
"private": true,
"private": false,
"dependencies": {
"@canonical/maas-ui-shared": "0.1.0",
"@canonical/macaroon-bakery": "0.3.0",
"@canonical/react-components": "0.7.0",
"@maas-ui/shared": "0.1.0",
"@reduxjs/toolkit": "1.3.5",
"@sentry/browser": "5.15.4",
"classnames": "2.2.6",
Expand Down
2 changes: 1 addition & 1 deletion ui/src/app/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { general as generalSelectors } from "app/base/selectors";
import { auth as authSelectors } from "app/base/selectors";
import { config as configActions } from "app/settings/actions";
import { config as configSelectors } from "app/settings/selectors";
import { Footer, Header } from "@maas-ui/shared";
import { Footer, Header } from "@canonical/maas-ui-shared";
import { status } from "app/base/selectors";
import { status as statusActions } from "app/base/actions";
import { useLocation, useRouter } from "app/base/hooks";
Expand Down