breaking: rename package names to be consistent and under @medusajs scope (#9580)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import boxen from "boxen"
|
||||
import { ChildProcess, execSync, fork } from "child_process"
|
||||
import chokidar, { FSWatcher } from "chokidar"
|
||||
import { Store } from "medusa-telemetry"
|
||||
import { Store } from "@medusajs/telemetry"
|
||||
import { EOL } from "os"
|
||||
import path from "path"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ import path from "path"
|
||||
import http from "http"
|
||||
import express from "express"
|
||||
import cluster from "cluster"
|
||||
import { track } from "medusa-telemetry"
|
||||
import { track } from "@medusajs/telemetry"
|
||||
import { scheduleJob } from "node-schedule"
|
||||
|
||||
import {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { logger } from "@medusajs/framework/logger"
|
||||
import { Modules } from "@medusajs/framework/utils"
|
||||
import express from "express"
|
||||
import { track } from "medusa-telemetry"
|
||||
import { track } from "@medusajs/telemetry"
|
||||
import loaders from "../loaders"
|
||||
|
||||
export default async function ({
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
import LocalFileProvider from "@medusajs/file-local-next"
|
||||
|
||||
export * from "@medusajs/file-local-next"
|
||||
|
||||
export default LocalFileProvider
|
||||
export const discoveryPath = require.resolve("@medusajs/file-local-next")
|
||||
@@ -0,0 +1,6 @@
|
||||
import LocalFileProvider from "@medusajs/file-local"
|
||||
|
||||
export * from "@medusajs/file-local"
|
||||
|
||||
export default LocalFileProvider
|
||||
export const discoveryPath = require.resolve("@medusajs/file-local")
|
||||
@@ -1,6 +0,0 @@
|
||||
import InventoryModule from "@medusajs/inventory-next"
|
||||
|
||||
export * from "@medusajs/inventory-next"
|
||||
|
||||
export default InventoryModule
|
||||
export const discoveryPath = require.resolve("@medusajs/inventory-next")
|
||||
@@ -0,0 +1,6 @@
|
||||
import InventoryModule from "@medusajs/inventory"
|
||||
|
||||
export * from "@medusajs/inventory"
|
||||
|
||||
export default InventoryModule
|
||||
export const discoveryPath = require.resolve("@medusajs/inventory")
|
||||
@@ -1,6 +0,0 @@
|
||||
import StockLocationModule from "@medusajs/stock-location-next"
|
||||
|
||||
export * from "@medusajs/stock-location-next"
|
||||
|
||||
export default StockLocationModule
|
||||
export const discoveryPath = require.resolve("@medusajs/stock-location-next")
|
||||
@@ -0,0 +1,6 @@
|
||||
import StockLocationModule from "@medusajs/stock-location"
|
||||
|
||||
export * from "@medusajs/stock-location"
|
||||
|
||||
export default StockLocationModule
|
||||
export const discoveryPath = require.resolve("@medusajs/stock-location")
|
||||
Reference in New Issue
Block a user