Skip to content

Commit

Permalink
fix(rules): add Jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 23, 2023
1 parent 5fc5940 commit a48bec8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ exports[`all > should match everything 1`] = `
"intercom",
"intuit",
"java",
"jekyll",
"jenkins",
"jira",
"joomla",
Expand Down
1 change: 1 addition & 0 deletions src/rules/framework/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ import './gridsome.js';
import './ghost.js';
import './hexojs.js';
import './hugo.js';
import './jekyll.js';
import './shopify.hydrogen.js';
10 changes: 10 additions & 0 deletions src/rules/framework/jekyll.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { register } from '../../register.js';

register({
tech: 'jekyll',
name: 'Jekyll',
type: 'framework',
dependencies: [
{ type: 'githubAction', name: 'jeffreytse/jekyll-deploy-action' },
],
});
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,11 @@ exports[`docker > should match all dependencies 2`] = `
"jakejarvis/s3-sync-action",
"1",
],
[
"githubAction",
"jeffreytse/jekyll-deploy-action",
"1",
],
[
"githubAction",
"jonelantha/gatsby-s3-action",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ export type AllowedKeys =
| 'intuit'
| 'java'
| 'javascript'
| 'jekyll'
| 'jenkins'
| 'jest'
| 'jira'
Expand Down

0 comments on commit a48bec8

Please sign in to comment.