adminforth 1.0.0 → 1.0.1

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.
@@ -113,7 +113,8 @@ class CodeInjector {
113
113
  } else {
114
114
  await fsExtra.copy(path.join(__dirname, 'spa'), spaTmpPath, {
115
115
  filter: (src) => {
116
- return !src.includes('/node_modules') && !src.includes('/dist');
116
+ console.log('🛫🛫🛫🛫🛫src', src)
117
+ return !src.includes('/adminforth/spa/node_modules') && !src.includes('/adminforth/spa/dist');
117
118
  },
118
119
  });
119
120
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -316,7 +316,6 @@ import {
316
316
  import Filters from '@/components/Filters.vue';
317
317
 
318
318
 
319
-
320
319
  const coreStore = useCoreStore();
321
320
  const modalStore = useModalStore();
322
321