Skip to content

Commit

Permalink
fix(css fix): safari glitch error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
karamalie committed Oct 21, 2021
1 parent a7097ca commit 39dad7b
Show file tree
Hide file tree
Showing 9 changed files with 11,594 additions and 742 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@lottiefiles:registry=https://npm.pkg.github.com/
@lottiefiles:registry=https://registry.npmjs.org/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lottiefiles/lottie-player",
"version": "1.4.1",
"version": "1.4.2",
"description": "Lottie animation and Telegram Sticker player web components.",
"main": "dist/lottie-player.js",
"module": "dist/lottie-player.esm.js",
Expand Down Expand Up @@ -38,7 +38,7 @@
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@lottiefiles/eslint-plugin": "^2.0.0",
"@lottiefiles/eslint-plugin": "^2.2.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
Expand Down
33 changes: 17 additions & 16 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
* Copyright 2020 Design Barn Inc.
*/

'use strict';
"use strict";

const pkg = require('./package.json');
const pkg = require("./package.json");

const CHANGELOG_HEADER = `# Changelog
All notable changes to this project will be documented in this file.
Expand All @@ -24,39 +24,40 @@ const SUCCESS_COMMENT = `:tada: This \${issue.pull_request ? 'pull request is in
* https://github.com/semantic-release/changelog
*/
module.exports = {
branches: ['master', { name: 'beta', prerelease: true }],
tagFormat: 'v${version}',
branches: ["master", { name: "beta", prerelease: true }],
tagFormat: "v${version}",
ci: true,
plugins: [
[
'@semantic-release/commit-analyzer',
"@semantic-release/commit-analyzer",
{
preset: 'conventionalcommits',
preset: "conventionalcommits",
},
],
'@semantic-release/release-notes-generator',
"@semantic-release/release-notes-generator",
[
'@semantic-release/changelog',
"@semantic-release/changelog",
{
changelogFile: 'CHANGELOG.md',
changelogFile: "CHANGELOG.md",
changelogTitle: CHANGELOG_HEADER,
},
],
'@semantic-release/git',
"@semantic-release/git",
[
'@semantic-release/github',
"@semantic-release/github",
{
message: 'chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
assets: 'dist/*.tgz',
message:
"chore(release): v${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
assets: "dist/*.tgz",
successComment: SUCCESS_COMMENT,
addReleases: 'bottom',
addReleases: "bottom",
},
],
[
'@semantic-release/npm',
"@semantic-release/npm",
{
npmPublish: true,
tarballDir: 'dist',
tarballDir: "dist",
},
],
],
Expand Down
3 changes: 1 addition & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@
<lottie-player
id="player0"
autoplay
style="width: 100%; height: 400px"
controls
loop
speed="1"
mode="normal"
src="https://assets4.lottiefiles.com/packages/lf20_4pbyzxfg.json"
src="https://assets9.lottiefiles.com/datafiles/MUp3wlMDGtoK5FK/data.json"
>
</lottie-player>
</div>
Expand Down
Loading

0 comments on commit 39dad7b

Please sign in to comment.