This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bernhard Blieninger
fc05486403
|
6 years ago | |
---|---|---|
.. | ||
babel | 6 years ago | |
gulp | 6 years ago | |
jest | 6 years ago | |
node | 6 years ago | |
node_modules/core-js | 6 years ago | |
CHANGELOG.md | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
package.json | 6 years ago | |
third-party-module-map.json | 6 years ago |
README.md
fbjs-scripts
This is a collection of tools and scripts intended to be used in conjunction with fbjs
. Previously these were shipped as a part of fbjs
.
// before (fbjs@0.1.0)
var invariant = require('fbjs/lib/invariant');
var devExpression = require('fbjs/scripts/babel/dev-expression');
// after (fbjs, fbjs-scripts@0.2.0)
var invariant = require('fbjs/lib/invariant');
var devExpression = require('fbjs-scripts/babel/dev-expression');
Why?
This ensures that production code consuming fbjs
library code does not need to install script dependencies, unless you explicitly use them via the fbjs-scripts
package.