Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

emoji-favicon-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emoji-favicon-webpack-plugin - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

LICENSE

2

package.json
{
"name": "emoji-favicon-webpack-plugin",
"version": "1.1.1",
"version": "1.1.2",
"description": "Let webpack generate an emoji favicon for you",

@@ -5,0 +5,0 @@ "author": "Trevor Blades <tdblades@gmail.com>",

@@ -49,10 +49,26 @@ # Emoji Favicon Webpack Plugin

> MacOS has a pretty awesome and extensive library of emojis built into its [Apple Color Emoji](https://en.wikipedia.org/wiki/Apple_Color_Emoji) typeface, but other operating systems aren't so lucky. If you normally develop on a Mac, you will see different results when you build your app on a Linux or Windows machine.
## A note about using system emoji
> In order to get consistent results between development and production, you should make sure that you use the same operating system for building in each environment. For example, if you're using Travis CI to build your app, you must specify `osx` as your `os` option in your build config. You can read more about using OS X in Travis [here](https://docs.travis-ci.com/user/reference/osx/).
MacOS has a pretty awesome and extensive library of emojis built into its [Apple Color Emoji](https://en.wikipedia.org/wiki/Apple_Color_Emoji) typeface, but other operating systems aren't so lucky. If you normally develop on a Mac, you will see different results when you build your app on a Linux or Windows machine.
## In the wild
In order to get consistent results between development and production, you should make sure that you use the same operating system for building in each environment. The configuration required to make this happen varies between CI tools, but if you use [TravisCI](https://travis-ci.com), you can add the following to your `.travis.yml` file depending on what OS you're trying to target:
- [Transform CSS](https://transform-css.trevorblades.com)
### MacOS
- [BATB Stats](https://batbstats.trevorblades.com)
```yaml
os: osx
```
### Ubuntu
```yaml
# the following is required for favicon-emoji to run on Ubuntu with `useSystem`
# https://github.com/travis-ci/travis-ci/issues/8836#issuecomment-348227535
sudo: required
addons:
chrome: stable
```
## License
[MIT](./LICENSE)

@@ -6,9 +6,3 @@ const EmojiFaviconPlugin = require('./plugin');

entry: './index',
plugins: [
new EmojiFaviconPlugin({
emoji: 'carrot',
useSystem: false
}),
new HtmlPlugin()
]
plugins: [new EmojiFaviconPlugin('💊'), new HtmlPlugin()]
};

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc