1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-06-26 07:58:47 +00:00

fix: temporary fix MaxCDN outage (#581)

* fix: temporary fix

* fix: update yarn command line in build script
This commit is contained in:
Xavier Stouder 2023-01-09 22:31:23 +01:00 committed by GitHub
parent ad3d3d669b
commit abb5a1add2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 1461 additions and 1072 deletions

7
.gitignore vendored
View File

@ -3,3 +3,10 @@ node_modules/
build
dist/
.npmrc
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

1
.yarnrc.yml Normal file
View File

@ -0,0 +1 @@
nodeLinker: node-modules

View File

@ -22,7 +22,7 @@ This guarantees that you will always use the latest version of the library.
If, instead, you'd like to include the latest version explicitly, you can add the following tag:
```html
<script src="https://twemoji.maxcdn.com/v/14.0.2/twemoji.min.js" integrity="sha384-32KMvAMS4DUBcQtHG6fzADguo/tpN1Nh6BAJa2QqZc6/i0K+YPQE+bWiqBRAWuFs" crossorigin="anonymous"></script>
<script src="https://unpkg.com/twemoji@14.0.2/dist/twemoji.min.js" integrity="sha384-ICOlZarapRIX6UjKPcWKEpubjg7lGADN7Y9fYP4DU9zm0aPFhgnP5ef+XFaPyKv+" crossorigin="anonymous"></script>
```
### Download

2
index.d.ts vendored
View File

@ -13,7 +13,7 @@ export type ReplacerFunction = (substring: string, ...args: any[]) => string;
export type TwemojiOptions = {
/**
* Default: MaxCDN
* Default: Cloudflare
*/
base?: string;
/**

View File

@ -44,7 +44,7 @@
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>Code licensed under MIT. Graphics licensed under CC-BY</p>
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js"></script>
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js"></script>
<script>
// I \u2764 emoji!
twemoji.parse(document.body);

View File

@ -47,7 +47,7 @@ function createTwemoji() {
/////////////////////////
// default assets url, by default will be Twitter Inc. CDN
base: 'https://twemoji.maxcdn.com/v/$VERSION/',
base: 'https://cdnjs.cloudflare.com/ajax/libs/twemoji/$VERSION/',
// default assets file extensions, by default '.png'
ext: '.png',

View File

@ -39,7 +39,7 @@ fs.writeFileSync(
);
spawnSync(
'yarnpkg',
'yarn',
[
'uglifyjs',
'--verbose',
@ -60,7 +60,7 @@ const integrityHash = getIntegrityHash(distFile('twemoji.min.js'));
const { version } = require('../package.json');
function updateSriScriptReference(filename) {
const newScript = `<script src="https://twemoji.maxcdn.com/v/${version}/twemoji.min.js" integrity="${integrityHash}"`;
const newScript = `<script src="https://unpkg.com/twemoji@${version}/dist/twemoji.min.js" integrity="${integrityHash}"`;
fs.writeFileSync(filename, fs.readFileSync(filename).toString('utf8').replace(/<script src="[^ ]*" integrity="[^ ]*"/, newScript));
}

View File

@ -25,7 +25,7 @@
vertical-align: -0.1em;
}
</style>
<script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
</head>
<body>
<ul class="emoji-list">

View File

@ -225,7 +225,7 @@ wru.test([{
},{
name: 'nested nodes',
test: function () {
var str = '<img class="emoji" draggable="false" alt="\u2764" src="https://twemoji.maxcdn.com/72x72/2764.png"/>',
var str = '<img class="emoji" draggable="false" alt="\u2764" src="https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/72x72/2764.png"/>',
div = document.createElement('div'),
p,
img;

2509
yarn.lock

File diff suppressed because it is too large Load Diff