create-instantsearch-app 6.3.0 → 6.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -18
- package/package.json +3 -4
- package/src/templates/Angular InstantSearch/README.md +1 -1
- package/src/templates/Autocomplete/README.md +1 -1
- package/src/templates/Autocomplete.js 0/README.md +1 -1
- package/src/templates/InstantSearch.js/README.md +1 -1
- package/src/templates/InstantSearch.js/index.html.hbs +1 -1
- package/src/templates/InstantSearch.js 2/README.md +1 -1
- package/src/templates/InstantSearch.js 2/index.html.hbs +1 -1
- package/src/templates/InstantSearch.js widget/README.md +1 -1
- package/src/templates/JavaScript Client/README.md +1 -1
- package/src/templates/JavaScript Helper/README.md +1 -1
- package/src/templates/JavaScript Helper 2/README.md +1 -1
- package/src/templates/React InstantSearch/README.md +1 -1
- package/src/templates/React InstantSearch/src/App.js.hbs +1 -1
- package/src/templates/React InstantSearch Hooks/README.md +1 -1
- package/src/templates/React InstantSearch Hooks/src/App.tsx.hbs +1 -1
- package/src/templates/React InstantSearch Hooks Native/README.md +1 -1
- package/src/templates/React InstantSearch Native/README.md +1 -1
- package/src/templates/React InstantSearch widget/README.md +1 -1
- package/src/templates/Vue InstantSearch/README.md +1 -1
- package/src/templates/Vue InstantSearch/src/App.vue +1 -1
- package/src/templates/Vue InstantSearch 1/README.md +1 -1
- package/src/templates/Vue InstantSearch 1/src/App.vue +1 -1
- package/src/templates/Vue InstantSearch 2/README.md +1 -1
- package/src/templates/Vue InstantSearch 2/src/App.vue +1 -1
- package/src/templates/Vue InstantSearch with Vue 3/README.md +1 -1
- package/src/templates/Vue InstantSearch with Vue 3/src/App.vue +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[![Version][version-svg]][package-url] [![License][license-image]][license-url] [![Build Status][ci-svg]][ci-url]
|
|
6
6
|
|
|
7
|
-
`create-instantsearch-app` is a command line utility that helps you quick start your InstantSearch app using any [Algolia][algolia-website] InstantSearch flavor ([InstantSearch.js][instantsearchjs-github], [React InstantSearch][react-instantsearch-github], [Vue InstantSearch][vue-instantsearch-github], [Angular InstantSearch][angular-instantsearch-github], [InstantSearch iOS][instantsearch-ios-github] and [InstantSearch Android][instantsearch-android-github]).
|
|
7
|
+
`create-instantsearch-app` is a command line utility that helps you quick start your InstantSearch app using any [Algolia][algolia-website] InstantSearch flavor ([InstantSearch.js][instantsearchjs-github], [React InstantSearch Hooks][react-instantsearch-hooks-github], [Vue InstantSearch][vue-instantsearch-github], [Angular InstantSearch][angular-instantsearch-github], [InstantSearch iOS][instantsearch-ios-github] and [InstantSearch Android][instantsearch-android-github]).
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<img src="preview.png" width="800" alt="Preview">
|
|
@@ -147,14 +147,14 @@ app.create().then(() => console.log('App generated!'));
|
|
|
147
147
|
|
|
148
148
|
You can use the web templates on CodeSandbox:
|
|
149
149
|
|
|
150
|
-
- [InstantSearch.js 3](https://codesandbox.io/s/github/algolia/instantsearch
|
|
151
|
-
- [InstantSearch.js 2](https://codesandbox.io/s/github/algolia/instantsearch
|
|
152
|
-
- [React InstantSearch](https://codesandbox.io/s/github/algolia/instantsearch
|
|
153
|
-
- [Vue InstantSearch](https://codesandbox.io/s/github/algolia/instantsearch
|
|
154
|
-
- [Angular InstantSearch](https://codesandbox.io/s/github/algolia/instantsearch
|
|
155
|
-
- [Autocomplete.js](https://codesandbox.io/s/github/algolia/instantsearch
|
|
156
|
-
- [JavaScript Client](https://codesandbox.io/s/github/algolia/instantsearch
|
|
157
|
-
- [JavaScript Helper](https://codesandbox.io/s/github/algolia/instantsearch
|
|
150
|
+
- [InstantSearch.js 3](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/instantsearch.js)
|
|
151
|
+
- [InstantSearch.js 2](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/instantsearch.js-2.x)
|
|
152
|
+
- [React InstantSearch Hooks](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/react-instantsearch-hooks)
|
|
153
|
+
- [Vue InstantSearch](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/vue-instantsearch)
|
|
154
|
+
- [Angular InstantSearch](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/angular-instantsearch)
|
|
155
|
+
- [Autocomplete.js](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/autocomplete.js)
|
|
156
|
+
- [JavaScript Client](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/javascript-client)
|
|
157
|
+
- [JavaScript Helper](https://codesandbox.io/s/github/algolia/instantsearch/tree/templates/javascript-helper)
|
|
158
158
|
|
|
159
159
|
## Contributing
|
|
160
160
|
|
|
@@ -170,7 +170,7 @@ To start contributing to the code, you need to:
|
|
|
170
170
|
1. [Clone the repository](https://help.github.com/articles/cloning-a-repository/)
|
|
171
171
|
1. Install the dependencies: `yarn`
|
|
172
172
|
|
|
173
|
-
Please read [our contribution process](https://github.com/algolia/instantsearch
|
|
173
|
+
Please read [our contribution process](https://github.com/algolia/instantsearch/blob/master/CONTRIBUTING.md) to learn more.
|
|
174
174
|
|
|
175
175
|
## License
|
|
176
176
|
|
|
@@ -188,14 +188,14 @@ Create InstantSearch App is [MIT licensed](LICENSE).
|
|
|
188
188
|
<!-- Links -->
|
|
189
189
|
|
|
190
190
|
[algolia-website]: https://www.algolia.com/?utm_medium=social-owned&utm_source=GitHub&utm_campaign=create-instantsearch-app%20repository
|
|
191
|
-
[instantsearchjs-github]: https://github.com/algolia/instantsearch.js
|
|
192
|
-
[react-instantsearch-github]: https://github.com/algolia/instantsearch
|
|
193
|
-
[vue-instantsearch-github]: https://github.com/algolia/vue-instantsearch
|
|
191
|
+
[instantsearchjs-github]: https://github.com/algolia/instantsearch/tree/master/packages/instantsearch.js
|
|
192
|
+
[react-instantsearch-hooks-github]: https://github.com/algolia/instantsearch/tree/master/packages/react-instantsearch-hooks-web
|
|
193
|
+
[vue-instantsearch-github]: https://github.com/algolia/instantsearch/tree/master/packages/vue-instantsearch
|
|
194
194
|
[angular-instantsearch-github]: https://github.com/algolia/angular-instantsearch
|
|
195
195
|
[instantsearch-ios-github]: https://github.com/algolia/instantsearch-ios
|
|
196
196
|
[instantsearch-android-github]: https://github.com/algolia/instantsearch-android
|
|
197
|
-
[contributing-bugreport]: https://github.com/algolia/instantsearch
|
|
198
|
-
[contributing-featurerequest]: https://github.com/algolia/instantsearch
|
|
199
|
-
[contributing-label-easy]: https://github.com/algolia/instantsearch
|
|
200
|
-
[contributing-label-bug]: https://github.com/algolia/instantsearch
|
|
201
|
-
[contributing-label-chore]: https://github.com/algolia/instantsearch
|
|
197
|
+
[contributing-bugreport]: https://github.com/algolia/instantsearch/issues/new?template=BUG_REPORT.yml&labels=triage,Library%3A%20Create+InstantSearch+App
|
|
198
|
+
[contributing-featurerequest]: https://github.com/algolia/instantsearch/discussions/new?category=ideas&labels=triage,Library%3A%20Create+InstantSearch+App&title=Feature%20request%3A%20
|
|
199
|
+
[contributing-label-easy]: https://github.com/algolia/instantsearch/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty%3A+Easy%22+label%3A%22Library%3A%20Create+InstantSearch+App%22
|
|
200
|
+
[contributing-label-bug]: https://github.com/algolia/instantsearch/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Bug%22+label%3A%22Library%3A%20Create+InstantSearch+App%22
|
|
201
|
+
[contributing-label-chore]: https://github.com/algolia/instantsearch/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Chore%22+label%3A%22Library%3A%20Create+InstantSearch+App%22
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-instantsearch-app",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "⚡️ Build InstantSearch apps at the speed of thought",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"algolia",
|
|
8
8
|
"instantsearch"
|
|
9
9
|
],
|
|
10
|
-
"repository": "algolia/instantsearch
|
|
10
|
+
"repository": "algolia/instantsearch",
|
|
11
11
|
"author": "Algolia <support@algolia.com>",
|
|
12
12
|
"main": "index.js",
|
|
13
13
|
"bin": {
|
|
@@ -51,8 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"jest-image-snapshot": "2.12.0",
|
|
54
|
-
"shipjs": "0.25.0",
|
|
55
54
|
"walk-sync": "2.0.2"
|
|
56
55
|
},
|
|
57
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "c483ae31e1e615be61dffb5d0bc04a4927960a67"
|
|
58
57
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -169,4 +169,4 @@ Please read [our contribution process](./CONTRIBUTING.md) to learn more.
|
|
|
169
169
|
|
|
170
170
|
---
|
|
171
171
|
|
|
172
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
172
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -34,7 +34,7 @@ function App() {
|
|
|
34
34
|
</h1>
|
|
35
35
|
<p className="header-subtitle">
|
|
36
36
|
using{' '}
|
|
37
|
-
<a href="https://github.com/algolia/react-instantsearch">
|
|
37
|
+
<a href="https://github.com/algolia/instantsearch/tree/master/packages/react-instantsearch">
|
|
38
38
|
React InstantSearch
|
|
39
39
|
</a>
|
|
40
40
|
</p>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -40,7 +40,7 @@ export function App() {
|
|
|
40
40
|
</h1>
|
|
41
41
|
<p className="header-subtitle">
|
|
42
42
|
using{' '}
|
|
43
|
-
<a href="https://github.com/algolia/react-instantsearch">
|
|
43
|
+
<a href="https://github.com/algolia/instantsearch/tree/master/packages/react-instantsearch-hooks-web">
|
|
44
44
|
React InstantSearch Hooks
|
|
45
45
|
</a>
|
|
46
46
|
</p>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -82,4 +82,4 @@ Please read [our contribution process](./CONTRIBUTING.md) to learn more.
|
|
|
82
82
|
|
|
83
83
|
---
|
|
84
84
|
|
|
85
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
85
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# {{name}}
|
|
2
2
|
|
|
3
|
-
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch
|
|
3
|
+
_This project was generated with [create-instantsearch-app](https://github.com/algolia/instantsearch/tree/master/packages/create-instantsearch-app) by [Algolia](https://algolia.com)._
|
|
4
4
|
|
|
5
5
|
## Get started
|
|
6
6
|
|