Skip to content

Commit

Permalink
Fixed an issue in ./bin/es6kadoo.js that prevented the creation of a …
Browse files Browse the repository at this point in the history
….github folder.
  • Loading branch information
jclo committed Jan 9, 2024
1 parent 8d63864 commit 483b245
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
### HEAD

### 2.0.0 (January 9, 2024)

* Fixed an issue in ./bin/es6kadoo.js that prevented the creation of a .github folder,
* ...,


### 2.0.0 (January 9, 2024)

* Updated the project with @ES6lib v2 (c8, Github Actions),
Expand Down
3 changes: 1 addition & 2 deletions bin/es6kadoo.js
Expand Up @@ -440,8 +440,7 @@ function _addHuskyHook(source, dest, folder) {
* @returns {} -,
*/
function _addGithub(source, dest, folder) {
shell.mkdir('-p', `${dest}/${folder}`);
shell.cp('-r', `${source}/${folder}/`, `${dest}/${folder}/.`);
shell.cp('-r', `${source}/${folder}`, `${dest}/.`);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -85,7 +85,7 @@
"mocha": "^8.4.0",
"nodemon": "^3.0.2",
"terser": "^5.26.0",
"@mobilabs/es6lib": "2.0.1"
"@mobilabs/es6lib": "2.0.2"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 483b245

Please sign in to comment.