freestyle-sandboxes 0.0.34 → 0.0.35

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.
@@ -32,7 +32,8 @@ const prepareDirForDeployment = async (directory) => {
32
32
  cwd: directory,
33
33
  nodir: true,
34
34
  ignore: ["**/node_modules/**"],
35
- absolute: false
35
+ absolute: false,
36
+ dot: true
36
37
  });
37
38
  for (const relativePath of patterns) {
38
39
  try {
@@ -57,7 +58,8 @@ const prepareDirForDeploymentSync = (directory) => {
57
58
  cwd: directory,
58
59
  nodir: true,
59
60
  ignore: ["**/node_modules/**"],
60
- absolute: false
61
+ absolute: false,
62
+ dot: true
61
63
  });
62
64
  for (const relativePath of patterns) {
63
65
  try {
@@ -9,7 +9,8 @@ const prepareDirForDeployment = async (directory) => {
9
9
  cwd: directory,
10
10
  nodir: true,
11
11
  ignore: ["**/node_modules/**"],
12
- absolute: false
12
+ absolute: false,
13
+ dot: true
13
14
  });
14
15
  for (const relativePath of patterns) {
15
16
  try {
@@ -34,7 +35,8 @@ const prepareDirForDeploymentSync = (directory) => {
34
35
  cwd: directory,
35
36
  nodir: true,
36
37
  ignore: ["**/node_modules/**"],
37
- absolute: false
38
+ absolute: false,
39
+ dot: true
38
40
  });
39
41
  for (const relativePath of patterns) {
40
42
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freestyle-sandboxes",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -14,6 +14,7 @@ export const prepareDirForDeployment = async (
14
14
  nodir: true,
15
15
  ignore: ["**/node_modules/**"],
16
16
  absolute: false,
17
+ dot: true,
17
18
  });
18
19
 
19
20
  for (const relativePath of patterns) {
@@ -45,6 +46,7 @@ export const prepareDirForDeploymentSync = (
45
46
  nodir: true,
46
47
  ignore: ["**/node_modules/**"],
47
48
  absolute: false,
49
+ dot: true,
48
50
  });
49
51
 
50
52
  for (const relativePath of patterns) {