forked from orizens/echoes-player
-
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.
Feature: gtag, external api keys, reduced styles (orizens#32)
* adding: gtag, refined use of api keys and removed unused styles and files * updated readmea
- Loading branch information
Showing
87 changed files
with
756 additions
and
12,178 deletions.
There are no files selected for viewing
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 @@ | ||
package-lock=false |
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
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
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
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,23 @@ | ||
const replace = require("replace"); | ||
const analyticsId = process.env.GA_PROJECTID; | ||
const youtubeApiKey = process.env.YT_API_KEY; | ||
const youtubeClientId = process.env.YT_CLIENT_ID; | ||
|
||
replace({ | ||
regex: '{GA_PROJECTID}', | ||
replacement: analyticsId, | ||
paths: ['./src'], | ||
recursive: true | ||
}); | ||
[{ | ||
regex: '{YT_API_KEY}', | ||
replacement: youtubeApiKey, | ||
paths: ['./src/environments'], | ||
recursive: true | ||
}, | ||
{ | ||
regex: '{YT_CLIENT_ID}', | ||
replacement: youtubeClientId, | ||
paths: ['./src/environments'], | ||
recursive: true | ||
}].forEach(options => replace(options)); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "echoes-ng2", | ||
"name": "echoes-player", | ||
"version": "3.0.0", | ||
"description": "Echoes Ng2", | ||
"description": "Echoes Player (Angular)", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "lite-server --config=./bs-config.js" | ||
}, | ||
"dependencies": { | ||
"lite-server": "2.2.2" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.