Skip to content

Commit

Permalink
chore: update names
Browse files Browse the repository at this point in the history
  • Loading branch information
yeager-eren committed Feb 26, 2024
1 parent 6e2190d commit 2406306
Show file tree
Hide file tree
Showing 85 changed files with 238 additions and 238 deletions.
10 changes: 5 additions & 5 deletions examples/queue-manager-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"rango-sdk": "^0.1.45"
},
"dependencies": {
"@rango-dev/provider-all": "^0.28.0",
"@rango-dev/queue-manager-rango-preset": "^0.28.0",
"@rango-dev/queue-manager-react": "^0.26.0",
"@rango-dev/wallets-react": "^0.14.0",
"@rango-dev/wallets-shared": "^0.28.0",
"@yeager-dev/provider-all": "^0.28.0",
"@yeager-dev/queue-manager-rango-preset": "^0.28.0",
"@yeager-dev/queue-manager-react": "^0.26.0",
"@yeager-dev/wallets-react": "^0.14.0",
"@yeager-dev/wallets-shared": "^0.28.0",
"bignumber.js": "^9.1.1",
"ethers": "^5.7.2",
"rango-sdk-basic": "^0.1.44",
Expand Down
4 changes: 2 additions & 2 deletions examples/wallets-adapter-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"clean": "rimraf .parcel-cache && rimraf dist"
},
"dependencies": {
"@rango-dev/provider-all": "^0.28.0",
"@rango-dev/wallets-adapter": "^0.23.1-next.1",
"@yeager-dev/provider-all": "^0.28.0",
"@yeager-dev/wallets-adapter": "^0.23.1-next.1",
"rango-sdk": "^0.1.45",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
8 changes: 4 additions & 4 deletions examples/wallets-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"clean": "rimraf .parcel-cache && rimraf dist"
},
"dependencies": {
"@rango-dev/provider-all": "^0.28.0",
"@rango-dev/ui": "^0.29.1-next.1",
"@rango-dev/wallets-react": "^0.14.0",
"@rango-dev/wallets-shared": "^0.28.0",
"@yeager-dev/provider-all": "^0.28.0",
"@yeager-dev/ui": "^0.29.1-next.1",
"@yeager-dev/wallets-react": "^0.14.0",
"@yeager-dev/wallets-shared": "^0.28.0",
"rango-sdk": "^0.1.45",
"react": "^18.2.0",
"react-dom": "^18.2.0"
Expand Down
4 changes: 2 additions & 2 deletions logging/console/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/logging-console",
"name": "@yeager-dev/logging-console",
"version": "0.1.0",
"license": "MIT",
"type": "module",
Expand All @@ -14,7 +14,7 @@
"src"
],
"dependencies": {
"@rango-dev/logging-types": "^0.1.0"
"@yeager-dev/logging-types": "^0.1.0"
},
"scripts": {
"build": "node ../../scripts/build/command.mjs --path logging/console",
Expand Down
4 changes: 2 additions & 2 deletions logging/console/src/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { EventPayload } from '@rango-dev/logging-types';
import type { EventPayload } from '@yeager-dev/logging-types';

import { Level } from '@rango-dev/logging-types';
import { Level } from '@yeager-dev/logging-types';

export function levelToName(level: Level) {
switch (level) {
Expand Down
4 changes: 2 additions & 2 deletions logging/console/src/layer.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Layer } from '@rango-dev/logging-types';
import type { Layer } from '@yeager-dev/logging-types';

import { Level } from '@rango-dev/logging-types';
import { Level } from '@yeager-dev/logging-types';

import { formatMessage } from './helpers';

Expand Down
4 changes: 2 additions & 2 deletions logging/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/logging-core",
"name": "@yeager-dev/logging-core",
"version": "0.1.0",
"license": "MIT",
"type": "module",
Expand All @@ -14,7 +14,7 @@
"src"
],
"dependencies": {
"@rango-dev/logging-types": "^0.1.0"
"@yeager-dev/logging-types": "^0.1.0"
},
"scripts": {
"build": "node ../../scripts/build/command.mjs --path logging/core",
Expand Down
4 changes: 2 additions & 2 deletions logging/core/src/logging.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Data, EventPayload, Message } from '@rango-dev/logging-types';
import type { Data, EventPayload, Message } from '@yeager-dev/logging-types';

import { EventType, Level } from '@rango-dev/logging-types';
import { EventType, Level } from '@yeager-dev/logging-types';

import { isValidInstance } from './helpers';

Expand Down
10 changes: 5 additions & 5 deletions logging/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ https://github.com/rango-exchange/rango-client/pull/601

log your messages using:
```
@rango-dev/logging-core
@yeager-dev/logging-core
```

Listen to you logs (only on clients):
```json
"@rango-dev/logging-subscriber": "0.1.0",
"@rango-dev/logging-console": "0.1.0",
"@yeager-dev/logging-subscriber": "0.1.0",
"@yeager-dev/logging-console": "0.1.0",
```

and

```js
import { init, Level } from '@rango-dev/logging-subscriber';
import { layer as consoleLayer } from '@rango-dev/logging-console';
import { init, Level } from '@yeager-dev/logging-subscriber';
import { layer as consoleLayer } from '@yeager-dev/logging-console';

init([consoleLayer()], {
baseLevel: Level.Trace,
Expand Down
4 changes: 2 additions & 2 deletions logging/sentry/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/logging-sentry",
"name": "@yeager-dev/logging-sentry",
"version": "0.1.0",
"license": "MIT",
"type": "module",
Expand All @@ -14,7 +14,7 @@
"src"
],
"dependencies": {
"@rango-dev/logging-types": "^0.1.0"
"@yeager-dev/logging-types": "^0.1.0"
},
"devDependencies": {
"@sentry/browser": "^7.102.1"
Expand Down
2 changes: 1 addition & 1 deletion logging/sentry/src/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { SeverityLevel } from '@sentry/browser';

import { Level } from '@rango-dev/logging-types';
import { Level } from '@yeager-dev/logging-types';

const FALLBACK_LEVEL = 'log';

Expand Down
2 changes: 1 addition & 1 deletion logging/sentry/src/layer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Layer } from '@rango-dev/logging-types';
import type { Layer } from '@yeager-dev/logging-types';
import type { captureException, Scope, withScope } from '@sentry/browser';

import { levelToSentryLevels } from './helpers';
Expand Down
4 changes: 2 additions & 2 deletions logging/subscriber/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/logging-subscriber",
"name": "@yeager-dev/logging-subscriber",
"version": "0.1.0",
"license": "MIT",
"type": "module",
Expand All @@ -14,7 +14,7 @@
"src"
],
"dependencies": {
"@rango-dev/logging-types": "^0.1.0"
"@yeager-dev/logging-types": "^0.1.0"
},
"scripts": {
"build": "node ../../scripts/build/command.mjs --path logging/subscriber",
Expand Down
2 changes: 1 addition & 1 deletion logging/subscriber/src/helpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { EventPayload, Level } from '@rango-dev/logging-types';
import type { EventPayload, Level } from '@yeager-dev/logging-types';

export function isEnabled(baseLevel: Level, level: Level) {
return level >= baseLevel;
Expand Down
2 changes: 1 addition & 1 deletion logging/subscriber/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { init } from './subscriber';
export { Level } from '@rango-dev/logging-types';
export { Level } from '@yeager-dev/logging-types';
4 changes: 2 additions & 2 deletions logging/subscriber/src/subscriber.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { EventPayload, Layer, Level } from '@rango-dev/logging-types';
import type { EventPayload, Layer, Level } from '@yeager-dev/logging-types';

import { EventType } from '@rango-dev/logging-types';
import { EventType } from '@yeager-dev/logging-types';

import { isEnabled, isValidEvent } from './helpers';

Expand Down
2 changes: 1 addition & 1 deletion logging/types/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/logging-types",
"name": "@yeager-dev/logging-types",
"version": "0.1.1-next.0",
"license": "MIT",
"type": "module",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"clean-root": "rimraf .parcel-cache && nx clear-cache",
"clean": "yarn clean-root && nx run-many --target=clean",
"prepare": "husky install && yarn i18n:compile",
"build:logging": "nx run-many --target=build --projects=@rango-dev/logging-*",
"build:signers": "nx run-many --target=build --projects=@rango-dev/signer-* --parallel=5",
"build:wallets": "nx run-many --target=build --projects=@rango-dev/signer-*,@rango-dev/wallets-*,@rango-dev/provider-* --exclude @rango-dev/wallets-demo --parallel=5",
"build:queue-manager": "nx run-many --target=build --projects=@rango-dev/queue-manager-* --exclude=@rango-dev/queue-manager-demo",
"build:widget": "nx run-many --target=build --projects=@rango-dev/widget-*",
"build:iframe": "nx run-many --target=build --projects=@rango-dev/widget-iframe",
"build:logging": "nx run-many --target=build --projects=@yeager-dev/logging-*",
"build:signers": "nx run-many --target=build --projects=@yeager-dev/signer-* --parallel=5",
"build:wallets": "nx run-many --target=build --projects=@yeager-dev/signer-*,@yeager-dev/wallets-*,@yeager-dev/provider-* --exclude @yeager-dev/wallets-demo --parallel=5",
"build:queue-manager": "nx run-many --target=build --projects=@yeager-dev/queue-manager-* --exclude=@yeager-dev/queue-manager-demo",
"build:widget": "nx run-many --target=build --projects=@yeager-dev/widget-*",
"build:iframe": "nx run-many --target=build --projects=@yeager-dev/widget-iframe",
"build:all": "nx run-many --target=build",
"build": "nx affected --target=build --parallel=3",
"build:non-demo": "nx affected --target=build --parallel=3 --exclude=@yeager-dev/queue-manager-demo,@yeager-dev/wallets-demo,@yeager-dev/wallets-adapter-demo,@yeager-dev/widget-app,@yeager-dev/widget-playground",
Expand Down
2 changes: 1 addition & 1 deletion queue-manager/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/queue-manager-core",
"name": "@yeager-dev/queue-manager-core",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
12 changes: 6 additions & 6 deletions queue-manager/rango-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/queue-manager-rango-preset",
"name": "@yeager-dev/queue-manager-rango-preset",
"version": "0.28.0",
"license": "MIT",
"type": "module",
Expand All @@ -21,10 +21,10 @@
"lint": "eslint \"**/*.{ts,tsx}\" --ignore-path ../../.eslintignore"
},
"peerDependencies": {
"@rango-dev/queue-manager-core": "*",
"@rango-dev/queue-manager-react": "*",
"@rango-dev/wallets-core": "*",
"@rango-dev/wallets-shared": "*",
"@yeager-dev/queue-manager-core": "*",
"@yeager-dev/queue-manager-react": "*",
"@yeager-dev/wallets-core": "*",
"@yeager-dev/wallets-shared": "*",
"bignumber.js": "*",
"rango-sdk": "*",
"rango-types": "*",
Expand All @@ -34,7 +34,7 @@
"@types/uuid": "^8.3.4"
},
"dependencies": {
"@rango-dev/logging-core": "^0.1.0",
"@yeager-dev/logging-core": "^0.1.0",
"mitt": "^3.0.0",
"rango-types": "^0.1.59",
"uuid": "^9.0.0"
Expand Down
6 changes: 3 additions & 3 deletions queue-manager/rango-preset/src/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ import type {
StepStatus,
} from 'rango-types';

import { warn } from '@rango-dev/logging-core';
import { Status } from '@rango-dev/queue-manager-core';
import { readAccountAddress } from '@rango-dev/wallets-core';
import { warn } from '@yeager-dev/logging-core';
import { Status } from '@yeager-dev/queue-manager-core';
import { readAccountAddress } from '@yeager-dev/wallets-core';
import {
getBlockChainNameFromId,
getEvmProvider,
Expand Down
2 changes: 1 addition & 1 deletion queue-manager/react/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/queue-manager-react",
"name": "@yeager-dev/queue-manager-react",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-cosmos/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-cosmos",
"name": "@yeager-dev/signer-cosmos",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-evm/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-evm",
"name": "@yeager-dev/signer-evm",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-solana/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-solana",
"name": "@yeager-dev/signer-solana",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-starknet/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-starknet",
"name": "@yeager-dev/signer-starknet",
"version": "0.27.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-terra/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-terra",
"name": "@yeager-dev/signer-terra",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-ton/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-ton",
"name": "@yeager-dev/signer-ton",
"version": "0.12.0",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion signers/signer-tron/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/signer-tron",
"name": "@yeager-dev/signer-tron",
"version": "0.26.0",
"license": "MIT",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions wallets/core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@rango-dev/wallets-core",
"name": "@yeager-dev/wallets-core",
"version": "0.29.0",
"license": "MIT",
"type": "module",
Expand All @@ -26,7 +26,7 @@
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"@rango-dev/wallets-shared": "^0.28.0",
"@yeager-dev/wallets-shared": "^0.28.0",
"rango-types": "^0.1.59"
},
"publishConfig": {
Expand Down
Loading

0 comments on commit 2406306

Please sign in to comment.