- Web Compat Service Project Articulation https://docs.google.com/document/d/1c5w87-KDZCP9eltjfk98GL_i-hyqQ193J86_e1L4wnQ
- Compat Data Project Evaluation https://docs.google.com/document/d/1p_RJziOqCJ8LYD8e4UhgqcftLgtFueTgje25yifSDSM
- Rebuilding MDN pages after compatibility change https://docs.google.com/document/d/16HeKirlMdoacZMi-DV2hw4UO9dhN6BQNzkmZRwS-YPM/edit (formerly https://old.etherpad-mozilla.org/mdn-compat-rebuild-solutions)
- 2014-03-07..2014-05-02 Compat Check-in notes from Etherpad
- https://docs.google.com/document/d/1vULBCgHSutjUxiFNLmYL46Q6kk36l8CjCuXt1iaT5MU (formerly )
This file contains hidden or 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
{ | |
"scripts": { | |
"test": "mocha -g", | |
"start": "babel-node server.js", | |
"prestart": "npm run build", | |
"build": "npm-run-all 'build:*'", | |
"build:js": "cross-env NODE_ENV=production browserify -t babelify -t envify src/app.js > static/build.js", | |
"postbuild:js": "uglifyjs static/build.js -o static/build.js", | |
"build:css": "cross-env NODE_ENV=production stylus css/main.styl -o static", | |
"watch": "npm-run-all --parallel 'watch:*'", |
This file contains hidden or 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
//install kss and fs-extra: npm install kss fs-extra | |
var kss = require('kss'), | |
options = { | |
markdown: false | |
}; | |
var fs = require('fs-extra'); | |
var file = './docs/kss.json'; |
This files contains my boilerplates for jQuery plugins.