@timus-networks/theme 1.0.5 → 1.0.6

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.
Files changed (2) hide show
  1. package/module.js +2 -1
  2. package/package.json +1 -1
package/module.js CHANGED
@@ -30,12 +30,13 @@ export default function (moduleOptions) {
30
30
  const sourceDir = resolve(__dirname, './main.css');
31
31
  const destDir = resolve(this.options.srcDir, 'static/scss/');
32
32
  await copyDirectory(sourceDir, destDir);
33
+ this.options.css.push('@/static/scss/main.css');
33
34
  });
34
35
 
35
36
  // Assest'si, static fonts altına iconsax olarak gönderiyorum ve nuxt.config'in css'ine ekliyorum
36
37
  // this.options.css.push('@/static/scss/_element-ui.scss');
37
38
  // this.options.css.push('@/static/scss/main.scss');
38
- this.options.css.push('@/static/scss/main.css');
39
+ // this.options.css.push('@/static/scss/main.css');
39
40
 
40
41
  // get all options for the module
41
42
  const options = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "main": "module.js",
6
6
  "types": "index.d.ts",