Skip to content

Commit

Permalink
[Fix] first "pnpm dev"'s error log (#537)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonghakseo <[email protected]>
  • Loading branch information
Jonghakseo and Jonghakseo authored Jun 29, 2024
1 parent bc7cfe4 commit 4f3bbff
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packages/dev-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"types": "index.ts",
"scripts": {
"clean": "rimraf ./dist && rimraf ./build",
"ready": "tsc",
Expand Down
2 changes: 1 addition & 1 deletion packages/hmr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"types": "index.ts",
"scripts": {
"clean": "rimraf ./dist && rimraf ./build",
"build:tsc": "tsc -b tsconfig.build.json",
Expand Down
5 changes: 2 additions & 3 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"types": "index.ts",
"scripts": {
"clean": "rimraf ./dist",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build": "pnpm build:esm && pnpm build:cjs",
"dev": "pnpm build:esm -w && pnpm build:cjs -w",
"ready": "pnpm build:esm && pnpm build:cjs",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write --ignore-path ../../.prettierignore",
Expand Down
5 changes: 2 additions & 3 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"types": "index.ts",
"scripts": {
"clean": "rimraf ./dist",
"build:esm": "tsc --module es2015 --target es5 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"build": "pnpm build:esm && pnpm build:cjs",
"dev": "pnpm build:esm -w && pnpm build:cjs -w",
"ready": "pnpm build:esm && pnpm build:cjs",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "pnpm lint --fix",
"prettier": "prettier . --write --ignore-path ../../.prettierignore",
Expand Down
18 changes: 7 additions & 11 deletions pages/content-ui/src/tailwind-output.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ html,
-moz-tab-size: 4;
/* 3 */
-o-tab-size: 4;
tab-size: 4;
tab-size: 4;
/* 3 */
font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
'Noto Color Emoji';
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
/* 4 */
font-feature-settings: normal;
/* 5 */
Expand Down Expand Up @@ -90,7 +89,7 @@ Add the correct text decoration in Chrome, Edge, and Safari.

abbr:where([title]) {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
text-decoration: underline dotted;
}

/*
Expand Down Expand Up @@ -136,7 +135,7 @@ code,
kbd,
samp,
pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
/* 1 */
font-feature-settings: normal;
/* 2 */
Expand Down Expand Up @@ -379,8 +378,7 @@ textarea {
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
input::-moz-placeholder, textarea::-moz-placeholder {
opacity: 1;
/* 1 */
color: #9ca3af;
Expand All @@ -400,7 +398,7 @@ Set the default cursor for buttons.
*/

button,
[role='button'] {
[role="button"] {
cursor: pointer;
}

Expand Down Expand Up @@ -448,9 +446,7 @@ video {
display: none;
}

*,
::before,
::after {
*, ::before, ::after {
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
Expand Down
1 change: 0 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"outputs": ["dist/**", "build/**"]
},
"dev": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**"],
"env": ["__FIREFOX__"],
"persistent": true
Expand Down

0 comments on commit 4f3bbff

Please sign in to comment.