Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: template is now in spidyr #8

Merged
merged 3 commits into from
Jun 12, 2024
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
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "webrcli",
"version": "0.0.5",
"version": "0.0.6",
"description": "cli tools for building node project with webr inside",
"main": "index.js",
"bin": {
Expand Down
5 changes: 3 additions & 2 deletions src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ const init = async (destination_folder) => {
process.chdir(previousDirectory);

// copying template
log("🗂️ Copying project skeleton ----");
log("🗂️ Copying project skeleton from spidyr----");

fs.cpSync(
path.join(__dirname, "..", "template"),
path.join(destination_folder, "node_modules", "spidyr", "template"),
path.join(destination_folder),
{ recursive: true }
);
Expand Down
132 changes: 0 additions & 132 deletions template/.gitignore

This file was deleted.

32 changes: 0 additions & 32 deletions template/index.js

This file was deleted.

12 changes: 0 additions & 12 deletions template/rfuns/DESCRIPTION

This file was deleted.

3 changes: 0 additions & 3 deletions template/rfuns/NAMESPACE

This file was deleted.

7 changes: 0 additions & 7 deletions template/rfuns/R/hello-world.R

This file was deleted.

14 changes: 0 additions & 14 deletions template/rfuns/man/hello_world.Rd

This file was deleted.

Loading