Skip to content

Instantly share code, notes, and snippets.

@Evgenus
Created November 3, 2014 01:55
Show Gist options
  • Save Evgenus/060edc0bebfa8672ad48 to your computer and use it in GitHub Desktop.
Save Evgenus/060edc0bebfa8672ad48 to your computer and use it in GitHub Desktop.
Damaged source files in spa
testimonial:
source:
a.js: |
var b = require("b");
module.exports = function() { return "a" + b; };
spa.yaml: |
pretty: true
grab: true
root: "."
manifest: "../build/manifest.json"
hosting:
"./(**/*.*)": "http://127.0.0.1:8010/$1"
coding_func:
name: aes-gcm
password: babuka
iter: 1000
ks: 128
ts: 128
copying:
"./(**/*.*)": "../build/$1"
node_modules:
b:
index.js: |
module.exports = "b";
testimonial:
source:
a.js: |
var b = require("b");
module.exports = function() { return "a" + b; };
spa.yaml: |
pretty: true
grab: true
root: "."
manifest: "../build/manifest.json"
hosting:
"./(**/*.*)": "http://127.0.0.1:8010/$1"
coding_func:
name: aes-gcm
password: babuka
iter: 1000
ks: 128
ts: 128
copying:
"./../node_modules/(**/*.*)": "../build/node_modules/$1"
"./(**/*.*)": "../build/source/$1"
node_modules:
b:
index.js: |
module.exports = "b";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment