Skip to content
This repository was archived by the owner on Nov 3, 2020. It is now read-only.

Commit 4096a09

Browse files
committed
Merge src/ folder with top-level directory
1 parent 8d10720 commit 4096a09

File tree

7 files changed

+6
-12
lines changed

7 files changed

+6
-12
lines changed

.gitignore

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NodeJS files & folders
2-
src/node_modules
32
build
3+
node_modules
44

55
# Logs
66
logs
@@ -27,9 +27,6 @@ coverage
2727
# node-waf configuration
2828
.lock-wscript
2929

30-
# Compiled binary addons (http://nodejs.org/api/addons.html)
31-
build/Release
32-
3330
# Dependency directories
3431
jspm_packages
3532

@@ -38,5 +35,3 @@ jspm_packages
3835

3936
# Optional REPL history
4037
.node_repl_history
41-
#node modules should be seperated from scr folder so that webpacking and build process can be easy
42-
node_modules

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
.PHONY: default clean
22
default:
33
mkdir -p build
4-
npm install --prefix src
5-
cd src && zip -r9 alexa-youtube-skill.zip node_modules util *.js *.json
6-
mv src/alexa-youtube-skill.zip build
4+
npm install
5+
zip -r9 alexa-youtube-skill.zip node_modules util *.js *.json
6+
mv alexa-youtube-skill.zip build
77
clean:
8-
rm -rf src/node_modules
98
rm -rf build

src/index.js renamed to index.js

File renamed without changes.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alexa-youtube-skill",
3-
"version": "3.0.4",
3+
"version": "3.0.5",
44
"description": "Use Alexa to search YouTube for your favorite videos",
55
"engines": {
66
"node": ">=10.16.3"
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)