Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microlinkhq/metascraper
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.45.3
Choose a base ref
...
head repository: microlinkhq/metascraper
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.45.4
Choose a head ref
  • 7 commits
  • 10 files changed
  • 2 contributors

Commits on Apr 2, 2024

  1. build: use postcss

    Kikobeats committed Apr 2, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    Kikobeats Kiko Beats
    Copy the full SHA
    8e964f2 View commit details

Commits on Apr 17, 2024

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3f1179e View commit details

Commits on Apr 18, 2024

  1. Update package.json

    Kikobeats authored Apr 18, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    245d5a9 View commit details
  2. Merge pull request #700 from viscoci/patch-1

    fix metascraper-video missing p-reflect in package.json
    Kikobeats authored Apr 18, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    70b9fbe View commit details
  3. ci: embrace pnpm@9

    Kikobeats committed Apr 18, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    Kikobeats Kiko Beats
    Copy the full SHA
    d95cc3d View commit details
  4. build: contributors

    Kikobeats committed Apr 18, 2024
    Copy the full SHA
    59a5010 View commit details
  5. chore(release): v5.45.4

    Kikobeats committed Apr 18, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    Kikobeats Kiko Beats
    Copy the full SHA
    495278e View commit details
Showing with 61 additions and 42 deletions.
  1. +1 −1 .npmrc
  2. +4 −0 CHANGELOG.md
  3. +10 −7 gulpfile.js
  4. +1 −1 index.html
  5. +1 −1 lerna.json
  6. +10 −7 package.json
  7. +4 −0 packages/metascraper-video/CHANGELOG.md
  8. +3 −2 packages/metascraper-video/package.json
  9. +26 −22 src/css/style.css
  10. +1 −1 static/style.min.css
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
audit=false
enable-pre-post-scripts=true

fund=false
loglevel=error
package-lock=false
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.45.4](https://github.com/microlinkhq/metascraper/compare/v5.45.3...v5.45.4) (2024-04-18)

**Note:** Version bump only for package metascraper

## [5.45.3](https://github.com/microlinkhq/metascraper/compare/v5.45.2...v5.45.3) (2024-03-23)

### Bug Fixes
17 changes: 10 additions & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
'use strict'

const strip = require('gulp-strip-css-comments')
const prefix = require('gulp-autoprefixer')
const cssnano = require('gulp-cssnano')
const uglify = require('gulp-uglify')
const postcss = require('gulp-postcss')
const concat = require('gulp-concat')
const uglify = require('gulp-uglify')
const gulp = require('gulp')

const src = {
@@ -24,9 +22,14 @@ const styles = () =>
gulp
.src(src.css)
.pipe(concat(`${dist.name.css}.min.css`))
.pipe(prefix())
.pipe(strip({ all: true }))
.pipe(cssnano())
.pipe(
postcss([
require('postcss-focus'),
require('cssnano')({
preset: require('cssnano-preset-advanced')
})
])
)
.pipe(gulp.dest(dist.path))

const scripts = () =>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -45,8 +45,8 @@
<link href="https://fonts.googleapis.com/css2?family=Bitter&family=Roboto+Mono&family=Source+Sans+Pro&display=swap" rel="stylesheet">

<!-- Stylesheet -->
<link rel="stylesheet" href="/static/style.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/codecopy/umd/codecopy.min.css">
<link rel="stylesheet" href="/static/style.min.css">

</head>

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "5.45.3",
"version": "5.45.4",
"command": {
"bootstrap": {
"npmClientArgs": [
17 changes: 10 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -40,6 +40,10 @@
"name": "Stiliyan Ivanov",
"email": "stily.c@gmail.com"
},
{
"name": "Viscoci",
"email": "37775195+viscoci@users.noreply.github.com"
},
{
"name": "Henry Bao",
"email": "62913901+henry-bao@users.noreply.github.com"
@@ -138,19 +142,18 @@
"browser-sync": "latest",
"c8": "latest",
"concurrently": "latest",
"cssnano": "latest",
"cssnano-preset-advanced": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"glob": "latest",
"gulp": "latest",
"gulp-autoprefixer": "latest",
"gulp": "4",
"gulp-concat": "latest",
"gulp-cssnano": "latest",
"gulp-strip-css-comments": "latest",
"gulp-postcss": "latest",
"gulp-uglify": "latest",
"make-dir": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"rimraf": "latest",
"postcss": "latest",
"postcss-focus": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-markdown": "latest"
4 changes: 4 additions & 0 deletions packages/metascraper-video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.45.4](https://github.com/microlinkhq/metascraper/compare/v5.45.3...v5.45.4) (2024-04-18)

**Note:** Version bump only for package metascraper-video

## [5.45.2](https://github.com/microlinkhq/metascraper/compare/v5.45.1...v5.45.2) (2024-03-14)

**Note:** Version bump only for package metascraper-video
5 changes: 3 additions & 2 deletions packages/metascraper-video/package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "metascraper-video",
"description": "Get video property from HTML markup",
"homepage": "https://github.com/microlinkhq/metascraper/packages/metascraper-video",
"version": "5.45.2",
"version": "5.45.4",
"types": "src/index.d.ts",
"main": "src/index.js",
"author": {
@@ -24,7 +24,8 @@
],
"dependencies": {
"@metascraper/helpers": "^5.45.0",
"lodash": "~4.17.21"
"lodash": "~4.17.21",
"p-reflect": "~2.1.0"
},
"devDependencies": {
"async-listen": "latest",
48 changes: 26 additions & 22 deletions src/css/style.css
Original file line number Diff line number Diff line change
@@ -32,23 +32,6 @@
--border-color: var(--gray3);
}

@keyframes octocat {
0%,
to {
transform: rotate(0);
}

20%,
60% {
transform: rotate(-25deg);
}

40%,
80% {
transform: rotate(10deg);
}
}

::selection {
background: #f9e4ac; /* WebKit/Blink Browsers */
}
@@ -85,7 +68,27 @@ img {
max-width: 100%;
}

.github-corner {

/* github-corner */

@keyframes b {
0%,
100% {
transform: rotate(0);
}

20%,
60% {
transform: rotate(-25deg);
}

40%,
80% {
transform: rotate(10deg);
}
}

.github-corner svg {
border-bottom: 0;
position: fixed;
right: 0;
@@ -94,17 +97,18 @@ img {
z-index: 1;
}

.github-corner:hover svg .octo-arm {
opacity: 1;
animation: b 560ms ease-in-out;
}

.github-corner svg {
color: #fff;
fill: var(--secondary-color);
height: 80px;
width: 80px;
}

.github-corner:hover .octo-arm {
animation: octocat 0.5s ease-in-out;
}

main {
display: block;
position: relative;
2 changes: 1 addition & 1 deletion static/style.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.