Skip to content

Commit 72d1e2d

Browse files
committed
Update library to the lastest version
1 parent 8940fa5 commit 72d1e2d

20 files changed

+9004
-3379
lines changed

.eslintrc.cjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* eslint-env node */
2+
require('@rushstack/eslint-patch/modern-module-resolution')
3+
4+
module.exports = {
5+
root: true,
6+
'extends': [
7+
'plugin:vue/vue3-essential',
8+
'eslint:recommended',
9+
'@vue/eslint-config-typescript'
10+
],
11+
parserOptions: {
12+
ecmaVersion: 'latest'
13+
}
14+
}

.github/workflows/codeql-analysis.yml

-70
This file was deleted.

.gitignore

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
110
node_modules
211
.DS_Store
312
dist
413
dist-ssr
14+
coverage
515
*.local
16+
.eslintcache
17+
18+
/cypress/videos/
19+
/cypress/screenshots/
20+
21+
# Editor directories and files
22+
.vscode/*
23+
!.vscode/extensions.json
624
.idea
7-
.vscode
25+
*.suo
26+
*.ntvs*
27+
*.njsproj
28+
*.sln
29+
*.sw?
30+
31+
*.tsbuildinfo

.np-config.js

-4
This file was deleted.

.npmrc

-42 Bytes
Binary file not shown.

.prettierrc.js

-6
This file was deleted.

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"Vue.volar",
4+
"dbaeumer.vscode-eslint"
5+
]
6+
}

env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="vite/client" />

global.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
declare module 'global' {
2+
interface Window {
3+
twttr: any;
4+
}
5+
}

index.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!DOCTYPE html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Vite App</title>
7-
</head>
8-
<body>
9-
<div id="app"></div>
10-
<script type="module" src="/src/main.ts"></script>
11-
</body>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Vue Tweet</title>
7+
</head>
8+
<body>
9+
<div id="app"></div>
10+
<script type="module" src="/src/main.ts"></script>
11+
</body>
1212
</html>

0 commit comments

Comments
 (0)