Skip to content

Commit f4bf62e

Browse files
authored
feat: detect sites generated with iles (#62)
1 parent d190092 commit f4bf62e

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ It supports multiple [frameworks](#frameworks), [UI libraries](#ui-libraries) an
3232
- [Quasar](https://quasar.dev)
3333
- [Gridsome](https://gridsome.org)
3434
- [VuePress](https://vuepress.vuejs.org)
35+
- [îles](https://iles-docs.netlify.app)
3536

3637
To support a new Vue framework, please look at [detectors/frameworks.json](detectors/frameworks.json).
3738

detectors/frameworks.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,17 @@
3939
"html": "<meta [^>]*name=\"gridsome:hash\""
4040
}
4141
},
42+
"iles": {
43+
"metas": {
44+
"slug": "iles",
45+
"name": "îles",
46+
"imgPath": "/framework/iles.svg",
47+
"url": "https://iles-docs.netlify.app"
48+
},
49+
"detectors": {
50+
"html": "<meta property=\"generator\" content=\"îles\""
51+
}
52+
},
4253
"quasar": {
4354
"metas": {
4455
"slug": "quasar",

icons/framework/iles.svg

Lines changed: 1 addition & 0 deletions
Loading

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ async function analyze (originalUrl, options = {}) {
6868
vueVersion: null,
6969
hasSSR: false, // default
7070
isStatic: true, // default
71-
framework: null, // nuxt | gridsome | quasar
71+
framework: null, // nuxt | gridsome | quasar | vuepress | iles
7272
plugins: [], // vue-router, vuex, vue-apollo, etc
7373
ui: null // vuetify | bootstrap-vue | element-ui | tailwindcss
7474
}

0 commit comments

Comments
 (0)