Skip to content

Commit

Permalink
chore: change package name to monicon
Browse files Browse the repository at this point in the history
  • Loading branch information
oktaysenkan committed Oct 5, 2024
1 parent c381215 commit 6cef675
Show file tree
Hide file tree
Showing 90 changed files with 156 additions and 873 deletions.
18 changes: 9 additions & 9 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [["@oktaytest/*"]],
"fixed": [["@monicon/*"]],
"linked": [],
"access": "restricted",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": [
"@oktaytest/react-native-app",
"@oktaytest/next",
"@oktaytest/nuxt-app",
"@oktaytest/rollup-react",
"@oktaytest/rspack-react",
"@oktaytest/vite-react",
"@oktaytest/vite-vue",
"@oktaytest/svelte-app"
"@monicon/react-native-app",
"@monicon/next",
"@monicon/nuxt-app",
"@monicon/rollup-react",
"@monicon/rspack-react",
"@monicon/vite-react",
"@monicon/vite-vue",
"@monicon/svelte-app"
]
}
2 changes: 1 addition & 1 deletion apps/next/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Iconify } from "@oktaytest/react";
import { Iconify } from "@monicon/react";

import styles from "../styles/index.module.css";

Expand Down
2 changes: 1 addition & 1 deletion apps/next/next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { IconifyPlugin } = require("@oktaytest/webpack");
const { IconifyPlugin } = require("@monicon/webpack");

module.exports = {
reactStrictMode: true,
Expand Down
8 changes: 4 additions & 4 deletions apps/next/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/next",
"name": "@monicon/next",
"version": "0.0.0",
"private": true,
"scripts": {
Expand All @@ -9,15 +9,15 @@
"lint": "next lint"
},
"dependencies": {
"@oktaytest/react": "*",
"@monicon/react": "*",
"next": "^14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native-web": "^0.19.10"
},
"devDependencies": {
"@oktaytest/typescript-config": "*",
"@oktaytest/webpack": "*",
"@monicon/typescript-config": "*",
"@monicon/webpack": "*",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
Expand Down
2 changes: 1 addition & 1 deletion apps/next/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@oktaytest/typescript-config/nextjs.json",
"extends": "@monicon/typescript-config/nextjs.json",
"compilerOptions": {
"plugins": [{ "name": "next" }]
},
Expand Down
2 changes: 1 addition & 1 deletion apps/nuxt-app/app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { Iconify } from "@oktaytest/vue";
import { Iconify } from "@monicon/vue";
useHead({
title: "Nuxt App",
Expand Down
2 changes: 1 addition & 1 deletion apps/nuxt-app/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default defineNuxtConfig({
devtools: { enabled: true },
compatibilityDate: "2024-10-05",
modules: ["@oktaytest/nuxt"],
modules: ["@monicon/nuxt"],
iconify: {
icons: [
"mdi:home",
Expand Down
8 changes: 4 additions & 4 deletions apps/nuxt-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/nuxt-app",
"name": "@monicon/nuxt-app",
"version": "0.0.0",
"private": true,
"type": "module",
Expand All @@ -9,10 +9,10 @@
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint .",
"postinstall": "turbo run build --filter='@oktaytest/nuxt' && nuxt prepare"
"postinstall": "turbo run build --filter='@monicon/nuxt' && nuxt prepare"
},
"dependencies": {
"@oktaytest/nuxt": "*"
"@monicon/nuxt": "*"
},
"devDependencies": {
"@nuxt/devtools": "latest",
Expand All @@ -21,6 +21,6 @@
"nuxt": "^3.13.2",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"@oktaytest/vue": "*"
"@monicon/vue": "*"
}
}
2 changes: 1 addition & 1 deletion apps/react-native-app/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { StyleSheet, View } from "react-native";
import { Iconify } from "@oktaytest/native";
import { Iconify } from "@monicon/native";

export default function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/react-native-app/babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = function (api) {
presets: ["babel-preset-expo"],
plugins: [
[
"@oktaytest/babel-plugin",
"@monicon/babel-plugin",
{
icons: [
"mdi:home",
Expand Down
2 changes: 1 addition & 1 deletion apps/react-native-app/metro.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Learn more https://docs.expo.io/guides/customizing-metro
const { getDefaultConfig } = require("expo/metro-config");
const { withIconify } = require("@oktaytest/metro");
const { withIconify } = require("@monicon/metro");
const path = require("path");

// Find the workspace root, this can be replaced with `find-yarn-workspace-root`
Expand Down
10 changes: 5 additions & 5 deletions apps/react-native-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/react-native-app",
"name": "@monicon/react-native-app",
"version": "0.0.0",
"private": true,
"main": "index.js",
Expand All @@ -11,10 +11,10 @@
"eject": "expo eject"
},
"dependencies": {
"@oktaytest/metro": "*",
"@oktaytest/native": "*",
"@oktaytest/webpack": "*",
"@oktaytest/babel-plugin": "*",
"@monicon/metro": "*",
"@monicon/native": "*",
"@monicon/webpack": "*",
"@monicon/babel-plugin": "*",
"expo": "^49.0.21",
"expo-status-bar": "~1.7.0",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/react-native-app/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const createExpoWebpackConfigAsync = require("@expo/webpack-config");
const { IconifyPlugin } = require("@oktaytest/webpack");
const { IconifyPlugin } = require("@monicon/webpack");

module.exports = async function (env, argv) {
const config = await createExpoWebpackConfigAsync(env, argv);
Expand Down
6 changes: 3 additions & 3 deletions apps/rollup-react/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/rollup-react",
"name": "@monicon/rollup-react",
"version": "0.0.0",
"private": true,
"main": "index.js",
Expand All @@ -9,14 +9,14 @@
"dev": "rollup -c --watch"
},
"dependencies": {
"@oktaytest/react": "*",
"@monicon/react": "*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@oktaytest/rollup": "*",
"@monicon/rollup": "*",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/rollup-react/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import nodeResolve from "@rollup/plugin-node-resolve";
import commonjs from "@rollup/plugin-commonjs";
import babel from "@rollup/plugin-babel";
import replace from "@rollup/plugin-replace";
import { IconifyPlugin } from "@oktaytest/rollup";
import { IconifyPlugin } from "@monicon/rollup";
import serve from "rollup-plugin-serve";

const isDev = process.env.NODE_ENV === "development";
Expand Down
2 changes: 1 addition & 1 deletion apps/rollup-react/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Iconify } from "@oktaytest/react";
import { Iconify } from "@monicon/react";

const App = () => {
return (
Expand Down
6 changes: 3 additions & 3 deletions apps/rspack-react/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/rspack-react",
"name": "@monicon/rspack-react",
"private": true,
"version": "0.0.0",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@oktaytest/react": "*"
"@monicon/react": "*"
},
"devDependencies": {
"@rspack/plugin-react-refresh": "1.0.0",
Expand All @@ -19,6 +19,6 @@
"@types/react-dom": "^18.2.18",
"cross-env": "^7.0.3",
"react-refresh": "^0.14.0",
"@oktaytest/rspack": "*"
"@monicon/rspack": "*"
}
}
2 changes: 1 addition & 1 deletion apps/rspack-react/rspack.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { fileURLToPath } from "node:url";
import { defineConfig } from "@rspack/cli";
import { rspack } from "@rspack/core";
import RefreshPlugin from "@rspack/plugin-react-refresh";
import IconifyPlugin from "@oktaytest/rspack";
import IconifyPlugin from "@monicon/rspack";

const __dirname = dirname(fileURLToPath(import.meta.url));
const isDev = process.env.NODE_ENV === "development";
Expand Down
2 changes: 1 addition & 1 deletion apps/rspack-react/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import { Iconify } from "@oktaytest/react";
import { Iconify } from "@monicon/react";

import "./App.css";

Expand Down
6 changes: 3 additions & 3 deletions apps/svelte-app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/svelte-app",
"name": "@monicon/svelte-app",
"version": "0.0.1",
"private": true,
"scripts": {
Expand All @@ -19,8 +19,8 @@
"vite": "^5.0.3"
},
"dependencies": {
"@oktaytest/vite": "*",
"@oktaytest/svelte": "*"
"@monicon/vite": "*",
"@monicon/svelte": "*"
},
"type": "module"
}
2 changes: 1 addition & 1 deletion apps/svelte-app/src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { Iconify } from "@oktaytest/svelte";
import { Iconify } from "@monicon/svelte";
</script>

<main>
Expand Down
2 changes: 1 addition & 1 deletion apps/svelte-app/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { sveltekit } from "@sveltejs/kit/vite";
import { defineConfig } from "vite";
import { IconifyPlugin } from "@oktaytest/vite";
import { IconifyPlugin } from "@monicon/vite";

export default defineConfig({
plugins: [
Expand Down
6 changes: 3 additions & 3 deletions apps/vite-react/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/vite-react",
"name": "@monicon/vite-react",
"private": true,
"version": "0.0.0",
"type": "module",
Expand All @@ -10,13 +10,13 @@
"preview": "vite preview"
},
"dependencies": {
"@oktaytest/react": "*",
"@monicon/react": "*",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@oktaytest/vite": "*",
"@monicon/vite": "*",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
Expand Down
2 changes: 1 addition & 1 deletion apps/vite-react/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "./App.css";

import { Iconify } from "@oktaytest/react";
import { Iconify } from "@monicon/react";

function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion apps/vite-react/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { IconifyPlugin } from "@oktaytest/vite";
import { IconifyPlugin } from "@monicon/vite";

// https://vitejs.dev/config/
export default defineConfig({
Expand Down
4 changes: 2 additions & 2 deletions apps/vite-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@oktaytest/vite-vue",
"name": "@monicon/vite-vue",
"private": true,
"version": "0.0.0",
"type": "module",
Expand All @@ -10,7 +10,7 @@
},
"dependencies": {
"vue": "^3.5.10",
"@oktaytest/vue": "*"
"@monicon/vue": "*"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
Expand Down
2 changes: 1 addition & 1 deletion apps/vite-vue/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createApp } from "vue";
import Iconify from "@oktaytest/vue";
import Iconify from "@monicon/vue";

import App from "./App.vue";

Expand Down
2 changes: 1 addition & 1 deletion apps/vite-vue/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { IconifyPlugin } from "@oktaytest/vite";
import { IconifyPlugin } from "@monicon/vite";

// https://vitejs.dev/config/
export default defineConfig({
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react-native-iconify",
"name": "monicon",
"private": true,
"workspaces": [
"apps/*",
Expand Down
Loading

0 comments on commit 6cef675

Please sign in to comment.