Skip to content

Commit

Permalink
fix(rules): add Assemble
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 23, 2023
1 parent 29d6693 commit 5aad32b
Show file tree
Hide file tree
Showing 5 changed files with 17 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 @@ -28,6 +28,7 @@ exports[`all > should match everything 1`] = `
"apache_thrift",
"apiplatform",
"appveyor",
"assemble",
"atlasgo",
"atlassian",
"auth0",
Expand Down
8 changes: 8 additions & 0 deletions src/rules/framework/assemble.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { register } from '../../register.js';

register({
tech: 'assemble',
name: 'Assemble',
type: 'framework',
dependencies: [{ type: 'npm', name: 'assemble' }],
});
1 change: 1 addition & 0 deletions src/rules/framework/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import './apache_thrift.js';
import './assemble.js';
import './ghost.js';
import './hugo.js';
6 changes: 6 additions & 0 deletions src/rules/spec/nodejs/__snapshots__/component.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports[`npm > should match everything 1`] = `
"apache_kafka",
"apache_thrift",
"apiplatform",
"assemble",
"auth0",
"aws",
"aws.amplifyhosting",
Expand Down Expand Up @@ -1477,6 +1478,11 @@ exports[`npm > should match everything 2`] = `
"angular",
"0.0.0",
],
[
"npm",
"assemble",
"0.0.0",
],
[
"npm",
"auth0",
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type AllowedKeys =
| 'apache_thrift'
| 'apiplatform'
| 'appveyor'
| 'assemble'
| 'atlasgo'
| 'atlassian'
| 'auth0'
Expand Down

0 comments on commit 5aad32b

Please sign in to comment.