Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 105 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"jest": "^29.0.0",
"np": "^9.0.0",
"prettier": "3.1.1",
"replace-in-file": "^6.1.0",
"replace-in-file": "^7.0.0",
"rollup": "^4.0.0",
"sisteransi": "^1.0.5",
"terser": "^5.17.1",
Expand Down
3 changes: 3 additions & 0 deletions src/create-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ async function prepare(starter: Starter) {
files: [join(filePath, '*'), join(filePath, 'src/*')],
from: /stencil-starter-project-name/g,
to: projectName,
glob: {
windowsPathsNoEscape: true,
},
Comment on lines +118 to +120
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tanner-reits || @christian-bromann can you offer a second set of eyes on this PR? I had to update this in order to get CI to pass on Windows. See 0e46aa7 for more information

});
setTmpDirectory(null);
};
Expand Down