Skip to content

Commit 09f749d

Browse files
committed
chore(release): 1.8.1
1 parent 0d5cefb commit 09f749d

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-public",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"private": true,
55
"workspaces": [
66
"packages/*"

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeoscopic/eslint-config",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"main": "index.js",
55
"sideEffects": false,
66
"repository": {

packages/tsconfig/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeoscopic/tsconfig",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",

packages/tsup-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeoscopic/tsup-config",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",

packages/vite-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeoscopic/vite-config",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"sideEffects": false,
55
"repository": {
66
"type": "git",

packages/vite-config/src/common.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import path from "path";
22
import fs from "fs";
3-
import { ConfigEnv, loadEnv, UserConfig, splitVendorChunkPlugin } from "vite";
3+
import type { ConfigEnv, UserConfig} from "vite";
4+
import { loadEnv, splitVendorChunkPlugin } from "vite";
45
import vitePluginHtmlEnv from "vite-plugin-html-env";
5-
import viteSentry, { ViteSentryPluginOptions } from "vite-plugin-sentry";
6+
import type { ViteSentryPluginOptions } from "vite-plugin-sentry";
7+
import viteSentry from "vite-plugin-sentry";
68
import tsconfigPaths from "vite-tsconfig-paths";
79
import merge from "ts-deepmerge";
810

packages/vite-config/src/react.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { ConfigEnv, UserConfig } from "vite";
2-
import react, { Options as ReactOptions } from "@vitejs/plugin-react";
2+
import type { Options as ReactOptions } from "@vitejs/plugin-react";
3+
import react from "@vitejs/plugin-react";
34
import svgrPlugin from "vite-plugin-svgr";
45
import { createOptions as createCommonOptions } from "./common";
56
import { compose } from "./utils";

0 commit comments

Comments
 (0)