Skip to content

Rewrite Vue Package #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .browserslistrc

This file was deleted.

15 changes: 15 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
'extends': [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier/skip-formatting'
],
parserOptions: {
ecmaVersion: 'latest'
}
}
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ When updating this repo, bump the version number in `package.json` according to
### Frequently Asked Questions (FAQ)

#### **Q: What version of Vue do you support?**
**A:** This package is designed for Vue 3.0 and newer versions. If you're working with an older version of Vue, specifically Vue 2, you can use version 1.1 of this package. However, please be aware that the older versions of the package aren't actively supported. Also, Vue 2 itself is [reaching end of life](https://vuejs.org/about/faq.html#is-vue-2-still-supported).
**A:** This package is designed for Vue 3.0 and newer versions. If you're working with an older version of Vue, specifically Vue 2, you can use version 1.1 of this package. However, please be aware that the older versions of the package aren't actively supported. Also, Vue 2 itself is [end of life](https://vuejs.org/about/faq.html#is-vue-2-still-supported).

#### **Q: What domains are necessary to whitelist for Content Security Policies (CSP)?**
**A:** You can see the domains required for whitelisting in this [help center](https://help.merge.dev/en/articles/5924787-using-content-security-policy-csp-with-merge) article.
Expand Down
5 changes: 0 additions & 5 deletions babel.config.js

This file was deleted.

8 changes: 0 additions & 8 deletions dev/serve.js

This file was deleted.

17 changes: 0 additions & 17 deletions dev/serve.vue

This file was deleted.

127 changes: 0 additions & 127 deletions dist/merge-link.esm.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/merge-link.min.js

This file was deleted.

121 changes: 0 additions & 121 deletions dist/merge-link.ssr.js

This file was deleted.

12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue Merge-Link Sandbox</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading