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
diff --git a/node_modules/stylis/dist/stylis.cjs.map b/node_modules/stylis/dist/stylis.cjs.map | |
deleted file mode 100644 | |
index ba82d54..0000000 | |
--- a/node_modules/stylis/dist/stylis.cjs.map | |
+++ /dev/null | |
@@ -1 +0,0 @@ | |
-{"version":3,"file":"stylis.cjs","sources":["../src/Enum.js","../src/Utility.js","../src/Tokenizer.js","../src/Parser.js","../src/Prefixer.js","../src/Serializer.js","../src/Middleware.js"],"sourcesContent":["export var MS = '-ms-'\nexport var MOZ = '-moz-'\nexport var WEBKIT = '-webkit-'\n\nexport var COMMENT = 'comm'\nexport var RULESET = 'rule'\nexport var DECLARATION = 'decl'\n\nexport var PAGE = '@page'\nexport var MEDIA = '@media'\nexport var IMPORT = '@import'\nexport var CHARSET = '@charset'\nexport var VIEWPORT = '@viewport'\nexport var SUPPORTS = '@supports'\nexport var DOCUMENT = '@document'\nexport var NAMESPACE = '@namespace'\nexport var KEYFRAMES = '@keyframes'\nexport var FONT_FACE = '@font-face'\nexport var COUNTER_STYLE = '@counter-style'\nexport var FONT_FEATURE_VALUES = '@font |
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
# Use: mkcd my-directory | |
function mkcd() { | |
if [ -n "$1" ]; then | |
mkdir "$1" && cd $_ | |
else | |
echo "Must specify a directory to create" | |
fi | |
} |
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
// View Big Text on GitHub - https://github.com/zachleat/BigText | |
app.directive('bigText', function() { | |
return { | |
restrict: 'A', | |
link: function(scope, element, attr) { | |
return element.bigtext({ | |
maxfontsize: attr.maxSize, | |
minfontsize: attr.minSize, | |
childSelector: attr.childSelector |