create-tauri-vue-app 0.0.2 → 0.0.3

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -62,7 +62,7 @@ Next steps:
62
62
 
63
63
  function copyRecursive(src, dest) {
64
64
  mkdirSync(dest, { recursive: true })
65
- const entries = readdirSync(src, { withFileTypes: true })
65
+ const entries = readdirSync(src, { withFileTypes: true, dot: true })
66
66
 
67
67
  for (const entry of entries) {
68
68
  const srcPath = join(src, entry.name)
@@ -79,7 +79,7 @@ function copyRecursive(src, dest) {
79
79
  }
80
80
 
81
81
  function replaceInFiles(dir, placeholder, replacement) {
82
- const entries = readdirSync(dir, { withFileTypes: true })
82
+ const entries = readdirSync(dir, { withFileTypes: true, dot: true })
83
83
 
84
84
  for (const entry of entries) {
85
85
  const path = join(dir, entry.name)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-tauri-vue-app",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Scaffold a new Tauri + Vue desktop application",
5
5
  "type": "module",
6
6
  "bin": {