Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions site/plugins.json
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@
"name": "Next.js ",
"package": "@netlify/plugin-nextjs",
"repo": "https://github.com/netlify/next-runtime",
"version": "5.11.6",
"version": "5.12.0",
"compatibility": [
{
"version": "5.7.0-ipx.0",
Expand All @@ -627,7 +627,7 @@
}
},
{
"version": "5.11.6",
"version": "5.12.0",
"overridePinnedVersion": ">=4.0.0",
"nodeVersion": ">=18.0.0",
"siteDependencies": {
Expand Down Expand Up @@ -1008,7 +1008,8 @@
"package": "@chiselstrike/netlify-plugin",
"description": "Sync Netlify sites and ChiselStrike builds from code in the same Git repository.",
"repo": "https://github.com/chiselstrike/netlify-plugin",
"version": "0.1.0"
"version": "0.1.0",
"status": "DEACTIVATED"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

> npm info @chiselstrike/netlify-plugin
npm error code E404
npm error 404 Not Found - GET https://registry.npmjs.org/@chiselstrike%2fnetlify-plugin - Not found
npm error 404
npm error 404  '@chiselstrike/netlify-plugin@*' is not in this registry.

This npm package was either removed or made private. Either way it's no longer installable. Github repo is still up, but there was no movement there in 3 years

},
{
"name": "Netlify Bundle ENV",
Expand Down
12 changes: 6 additions & 6 deletions test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ pluginsList.forEach((plugin) => {
})
})

test(`Plugin package should be published: ${packageName}`, async (t) => {
t.is(typeof version, 'string')
t.not(validVersion(version), null)
await t.notThrowsAsync(manifest(`${packageName}@${version}`))
})

if (status !== 'DEACTIVATED') {
test(`Plugin package should be published: ${packageName}`, async (t) => {
t.is(typeof version, 'string')
t.not(validVersion(version), null)
await t.notThrowsAsync(manifest(`${packageName}@${version}`))
})

test(`Plugin repository URL should be valid: ${packageName}`, async (t) => {
await t.notThrowsAsync(got(repo))
})
Expand Down