This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(vue): update vue template for vue-instantsearch 3 (#452)
* feat(vue): update vue template for vue-instantsearch 3 not much is different, except the version of the library and the compatibility with algoliasearch@4 * update unit test
- Loading branch information
Showing
17 changed files
with
607 additions
and
6 deletions.
There are no files selected for viewing
Binary file added
BIN
+1.6 KB
e2e/__image_snapshots__/vue-instantsearch-2.x/public/favicon.png-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
// extends from 'prettier/vue' until we update the Algolia configuration | ||
extends: ['algolia/vue', 'prettier/vue'], | ||
rules: { | ||
'import/no-commonjs': 'off', | ||
// enable the rule until we update the Algolia configuration | ||
'vue/component-name-in-template-casing': ['error', 'kebab-case'], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"singleQuote": true, | ||
"proseWrap": "never", | ||
"trailingComma": "es5" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const install = require('../../tasks/node/install'); | ||
const teardown = require('../../tasks/node/teardown'); | ||
|
||
module.exports = { | ||
category: 'Web', | ||
libraryName: 'vue-instantsearch', | ||
templateName: 'vue-instantsearch-2.x', | ||
supportedVersion: '>= 2.0.0 < 3.0.0', | ||
appName: 'vue-instantsearch-app', | ||
keywords: ['algolia', 'InstantSearch', 'Vue', 'vue-instantsearch'], | ||
tasks: { | ||
install, | ||
teardown, | ||
}, | ||
}; |
Oops, something went wrong.