generated from sachinraja/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate code to a newer environment
- Loading branch information
1 parent
b624fcf
commit b2027cd
Showing
7 changed files
with
165 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
extends: ['config:js-lib', 'github>sachinraja/renovate-config:js'], | ||
"extends": ["config:js-lib", "github>sachinraja/renovate-config:js"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html | ||
|
||
exports[`Counter.vue > should render 1`] = `"<div>10 <button class="inc"> + </button><button class="dec"> - </button></div>"`; | ||
exports[`counter.vue > should render 1`] = `"<div>10 <button class="inc"> + </button><button class="dec"> - </button></div>"`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "slimeform", | ||
"version": "0.9.1", | ||
"type": "module", | ||
"description": "Form state management and validation for Vue3", | ||
"version": "0.9.1", | ||
"packageManager": "[email protected]", | ||
"description": "Form state management and validation for Vue3", | ||
"author": { | ||
"name": "Ayaka Rizumu", | ||
"url": "https://github.com/LittleSound" | ||
|
@@ -14,17 +14,18 @@ | |
"utilities-library", | ||
"vue3-typescript" | ||
], | ||
"sideEffects": false, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
"default": "./dist/index.cjs" | ||
}, | ||
"./resolvers": { | ||
"types": "./dist/resolvers.d.ts", | ||
"import": "./dist/resolvers.js", | ||
"default": "./dist/resolvers.cjs", | ||
"types": "./dist/resolvers.d.ts" | ||
"default": "./dist/resolvers.cjs" | ||
} | ||
}, | ||
"main": "dist/index.cjs", | ||
|
@@ -54,12 +55,15 @@ | |
"clear": "rm -rf dist example/dist", | ||
"test": "vitest" | ||
}, | ||
"peerDependencies": { | ||
"vue": ">=3" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.6.4", | ||
"@iconify-json/carbon": "^1.1.29", | ||
"@iconify-json/noto-v1": "^1.1.11", | ||
"@types/jsdom": "^16.2.15", | ||
"@types/node": "17.0.29", | ||
"@types/node": "20.11.19", | ||
"@unocss/eslint-plugin": "^0.58.5", | ||
"@unocss/reset": "^0.34.1", | ||
"@vitejs/plugin-vue": "^5.0.4", | ||
|
@@ -75,8 +79,8 @@ | |
"nano-staged": "0.8.0", | ||
"npm-run-all": "4.1.5", | ||
"pnpm": "^8.15.3", | ||
"tsup": "6.5.0", | ||
"typescript": "4.9.4", | ||
"tsup": "8.0.2", | ||
"typescript": "5.3.3", | ||
"unocss": "^0.58.5", | ||
"unplugin-auto-import": "^0.17.5", | ||
"unplugin-vue-components": "^0.26.0", | ||
|
@@ -87,13 +91,9 @@ | |
"vue-tsc": "^1.8.27", | ||
"yup": "^1.3.3" | ||
}, | ||
"peerDependencies": { | ||
"vue": ">=3" | ||
}, | ||
"eslintConfig": { | ||
"extends": "@antfu" | ||
}, | ||
"sideEffects": false, | ||
"nano-staged": { | ||
"*.{js,ts,md,json,yaml}": "eslint . --fix", | ||
"*.{md}": "markdownlint -c .markdownlint.jsonc **/*.md" | ||
|
Oops, something went wrong.