@phoenix-cg/v-tabs 0.1.22 → 0.2.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,14 @@
1
+ import { fileURLToPath } from 'node:url'
2
+ import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
3
+ import viteConfig from './vite.config'
4
+
5
+ export default mergeConfig(
6
+ viteConfig,
7
+ defineConfig({
8
+ test: {
9
+ environment: 'jsdom',
10
+ exclude: [...configDefaults.exclude, 'e2e/**'],
11
+ root: fileURLToPath(new URL('./', import.meta.url)),
12
+ },
13
+ }),
14
+ )
package/.browserslistrc DELETED
@@ -1,3 +0,0 @@
1
- > 1%
2
- last 2 versions
3
- not dead
package/.eslintrc.js DELETED
@@ -1,26 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- env: {
4
- node: true
5
- },
6
- extends: ["plugin:vue/essential", "eslint:recommended"],
7
- parserOptions: {
8
- parser: "babel-eslint"
9
- },
10
- rules: {
11
- "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
12
- "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
13
- 'quotes': ['error', 'single']
14
- },
15
- overrides: [
16
- {
17
- files: [
18
- "**/__tests__/*.{j,t}s?(x)",
19
- "**/tests/unit/**/*.spec.{j,t}s?(x)"
20
- ],
21
- env: {
22
- jest: true
23
- }
24
- }
25
- ]
26
- };
package/babel.config.js DELETED
@@ -1,3 +0,0 @@
1
- module.exports = {
2
- presets: ["@vue/cli-plugin-babel/preset"]
3
- };
package/dist/demo.html DELETED
@@ -1,10 +0,0 @@
1
- <meta charset="utf-8">
2
- <title>v-tabs demo</title>
3
- <script src="./v-tabs.umd.js"></script>
4
-
5
- <link rel="stylesheet" href="./v-tabs.css">
6
-
7
-
8
- <script>
9
- console.log(v-tabs)
10
- </script>