-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
2,202 additions
and
1,574 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
name: 'playground' | ||
name: playground | ||
|
||
on: | ||
push: | ||
|
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,7 +1,2 @@ | ||
# .gitignore syntax (uses node-ignore behind the scenes) | ||
{ | ||
rules: {}, | ||
ignoreFiles: [ | ||
'**/*.js' | ||
] | ||
} | ||
dist/ | ||
docs/ |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import antfu from '@antfu/eslint-config' | ||
|
||
export default antfu({ | ||
vue: true, | ||
}) |
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,10 +1,17 @@ | ||
{ | ||
"name": "@noction/vue-draggable-grid-monorepo", | ||
"version": "1.10.1", | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=18", | ||
"pnpm": "^8" | ||
}, | ||
"scripts": { | ||
"lint": "pnpm -P -r \"/^lint:.*/\"", | ||
"lint:es": "pnpm -P -r lint:es", | ||
"lint:style": "pnpm -P -r lint:style", | ||
"lint:es": "eslint .", | ||
"lint:es:fix": "eslint . --fix", | ||
"lint:style": "stylelint **/*.{css,scss,vue}", | ||
"lint:style:fix": "stylelint **/*.{css,scss,vue} --fix", | ||
"typecheck": "pnpm -P -r typecheck", | ||
"build": "pnpm -P -r build", | ||
"build:lib": "pnpm -F vue-draggable-grid build", | ||
|
@@ -14,16 +21,11 @@ | |
"release": "pnpm run lint && bumpp package.json packages/playground/package.json packages/vue-draggable-grid/package.json --commit --push --tag" | ||
}, | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^6.19.0", | ||
"@typescript-eslint/parser": "^6.19.0", | ||
"@vue/eslint-config-typescript": "^12.0.0", | ||
"@antfu/eslint-config": "^2.13.0", | ||
"bumpp": "^9.3.0", | ||
"eslint": "^8.56.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-sort-exports": "^0.8.0", | ||
"eslint-plugin-vue": "^9.20.1", | ||
"eslint": "^9.0.0", | ||
"eslint-plugin-perfectionist": "^2.8.0", | ||
"lint-staged": "^15.2.2", | ||
"sass": "^1.69.7", | ||
"simple-git-hooks": "^2.9.0", | ||
"stylelint": "^16.1.0", | ||
|
@@ -32,14 +34,8 @@ | |
"stylelint-config-recommended-vue": "^1.5.0", | ||
"stylelint-config-standard-scss": "^13.0.0", | ||
"typescript": "^5.3.3", | ||
"vue-eslint-parser": "^9.4.0", | ||
"vue-tsc": "^1.8.27" | ||
}, | ||
"engines": { | ||
"node": ">=18", | ||
"pnpm": "^8" | ||
}, | ||
"packageManager": "[email protected]", | ||
"simple-git-hooks": { | ||
"pre-commit": "npx lint-staged" | ||
}, | ||
|
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
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
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
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,37 +1,37 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "esnext", | ||
"useDefineForClassFields": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"strict": true, | ||
"jsx": "preserve", | ||
"sourceMap": true, | ||
"resolveJsonModule": true, | ||
"outDir": "./dist", | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"lib": ["esnext", "dom"], | ||
"allowJs": true, | ||
"checkJs": false, | ||
"useDefineForClassFields": true, | ||
"baseUrl": ".", | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"paths": { | ||
"@/*": [ | ||
"src/*" | ||
] | ||
} | ||
}, | ||
"resolveJsonModule": true, | ||
"allowJs": true, | ||
"checkJs": false, | ||
"strict": true, | ||
"outDir": "./dist", | ||
"sourceMap": true, | ||
"esModuleInterop": true, | ||
"skipLibCheck": true | ||
}, | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.node.json" | ||
} | ||
], | ||
"include": [ | ||
"src/**/*.ts", | ||
"src/**/*.d.ts", | ||
"src/**/*.vue" | ||
], | ||
"exclude": [ | ||
"./node_modules" | ||
], | ||
"references": [ | ||
{ | ||
"path": "./tsconfig.node.json" | ||
} | ||
] | ||
} |
Oops, something went wrong.