Skip to content

Commit ff37e4c

Browse files
authoredFeb 3, 2023
feat: export getFrameworkById (#4852)
* feat: export getFrameworkById * feat: updated README to include getFrameworkById
1 parent 5acb25b commit ff37e4c

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed
 

‎packages/framework-info/README.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If you're looking for a way to run `framework-info` via CLI check the
1818
# Example (Node.js)
1919

2020
```js
21-
import { listFrameworks, hasFramework, getFramework } from '@netlify/framework-info'
21+
import { listFrameworks, hasFramework, getFramework, getFrameworkById } from '@netlify/framework-info'
2222

2323
console.log(await listFrameworks({ projectDir: './path/to/gatsby/website' }))
2424
// [
@@ -81,6 +81,24 @@ console.log(await getFramework('vue', { projectDir: './path/to/vue/website' }))
8181
// env: {},
8282
// plugins: []
8383
// }
84+
85+
console.log(getFrameworkById('vue'))
86+
// {
87+
// id: 'vue',
88+
// name: 'Vue.js',
89+
// category: 'frontend_framework',
90+
// dev: {
91+
// commands: ['npm run serve'],
92+
// port: 8080,
93+
// pollingStrategies: [{ name: 'TCP' }, { name: 'HTTP' }]
94+
// },
95+
// build: {
96+
// commands: ['vue-cli-service build'],
97+
// directory: 'dist'
98+
// },
99+
// env: {},
100+
// plugins: []
101+
// }
84102
```
85103

86104
# Installation

‎packages/framework-info/src/core.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,13 @@ export const getFramework = async function (frameworkId: FrameworkName, context:
5959
const frameworkInfo = getFrameworkInfo(framework, { scripts, runScriptCommand, nodeVersion })
6060
return frameworkInfo
6161
}
62+
/**
63+
* Gets the framework by its id
64+
* @param {string} frameworkId - Id such as `"gatsby"`
65+
* @returns
66+
*/
6267

63-
const getFrameworkById = function (frameworkId: FrameworkName): FrameworkDefinition {
68+
export const getFrameworkById = function (frameworkId: FrameworkName): FrameworkDefinition {
6469
const framework = FRAMEWORKS.find(({ id }) => id === frameworkId)
6570
if (framework === undefined) {
6671
const frameworkIds = FRAMEWORKS.map((knownFramework) => getFrameworkId(knownFramework))

0 commit comments

Comments
 (0)
Please sign in to comment.