quasar-ui-danx 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.css ADDED
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * quasar-ui-danx v0.0.12
3
+ * (c) 2024 Dan <dan@flytedesk.com>
4
+ * Released under the MIT License.
5
+ */
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * quasar-ui-danx v0.0.12
3
+ * (c) 2024 Dan <dan@flytedesk.com>
4
+ * Released under the MIT License.
5
+ */
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * quasar-ui-danx v0.0.12
3
+ * (c) 2024 Dan <dan@flytedesk.com>
4
+ * Released under the MIT License.
5
+ */
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * quasar-ui-danx v0.0.12
3
+ * (c) 2024 Dan <dan@flytedesk.com>
4
+ * Released under the MIT License.
5
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -1,5 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
+ "outDir": "./dist",
4
+ "declaration": true,
3
5
  // Specify ECMAScript target version
4
6
  "target": "esnext",
5
7
  // Specify module code generation
@@ -36,6 +38,7 @@
36
38
  "types/**/*.d.ts"
37
39
  ],
38
40
  "exclude": [
39
- "node_modules"
41
+ "node_modules",
42
+ "dist"
40
43
  ]
41
44
  }