Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 8d658d4

Browse files
committed
refactor: reset and removed untracked files
1 parent 5928e47 commit 8d658d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+65
-3519
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,4 @@ cypress/screenshots
114114

115115
# Turborepo
116116
.turbo
117+
.output

examples/nuxt-app/tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "./.nuxt/tsconfig.json"
2+
"extends": "./.nuxt/tsconfig.json",
3+
"compilerOptions": {
4+
"allowImportingTsExtensions": true
5+
}
36
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/nuxt/package.json renamed to modules/nuxt/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
"description": "Nuxt 3 compatible version of Chakra UI Vue",
55
"exports": {
66
".": {
7-
"import": "./dist/chakra-ui-nuxt-next.esm.js",
8-
"require": "./dist/chakra-ui-nuxt-next.cjs.js"
7+
"import": "./dist/module.mjs",
8+
"require": "./dist/module.cjs"
99
}
1010
},
11-
"main": "dist/chakra-ui-nuxt-next.cjs.js",
12-
"module": "dist/chakra-ui-nuxt-next.esm.js",
11+
"main": "./dist/module.cjs",
12+
"types": "./dist/types.d.ts",
1313
"files": [
1414
"dist"
1515
],
@@ -24,7 +24,7 @@
2424
"nuxt:build": "nuxt-module-build",
2525
"nuxt:build:fast": "nuxt-module-build",
2626
"nuxt:dev:build": "nuxi build playground",
27-
"nuxt:dev": "nuxi dev playground",
27+
"nuxt:dev": "NODE_OPTIONS --experimental-specifier-resolution=node nuxi dev playground",
2828
"types:check": "tsc --noEmit",
2929
"build:types": "tsup src --dts-only"
3030
},
File renamed without changes.

0 commit comments

Comments
 (0)