-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Cross-platform change to postinstall
chore: changed postinstall to correct filepath fix: Actually copying files chore: Travis testing chore: more travis chore: travis chore: Removed unnecessary Travis commands refactor: Changed copySync to relative path Added cross-platform to gitignore, opening a PR in npm-scripts to add the cross-platform script chore: Changed pathing to account for coming out of node_modules
- Loading branch information
Showing
3 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const fs = require('fs-extra'); | ||
|
||
try { | ||
fs.copySync(__dirname, './npm_scripts') | ||
console.log('success'); | ||
} catch (err) { | ||
console.error(err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters