Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup #308

Merged
merged 2 commits into from
Jun 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .ember-cli
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"disableAnalytics": false,

/**
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
*/
"isTypeScriptProject": false
}
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Configurations can be set under the `ember-cloud-firestore-adapter` like this:

```javascript
let ENV = {
const ENV = {
...

'ember-cloud-firestore-adapter': {
Expand Down Expand Up @@ -34,7 +34,7 @@ let ENV = {
},

...
}
};
```

### Available Configurations
Expand Down
10 changes: 5 additions & 5 deletions docs/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ We use [Firebase Local Emulator Suite](https://firebase.google.com/docs/emulator
Add an `ember-cloud-firestore-adapter.firestore.emulator` property in your `config/environment.js` and **make sure to disable it in production environment**.

```javascript
let ENV = {
const ENV = {
...

'ember-cloud-firestore-adapter': {
Expand All @@ -16,13 +16,13 @@ let ENV = {
firestore: {
emulator: {
hostname: 'localhost',
port: 8080
}
}
port: 8080,
},
},
},

...
}
};

if (environment === 'production') {
ENV['ember-cloud-firestore-adapter'].firestore.emulator = null;
Expand Down
3 changes: 1 addition & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"postpack": "ember ts:clean"
},
"dependencies": {
"ember-auto-import": "^2.4.1",
"ember-auto-import": "2.x",
"ember-cli-babel": "^7.26.11",
"ember-cli-htmlbars": "^6.0.1",
"ember-cli-typescript": "^4.2.1"
Expand Down Expand Up @@ -67,7 +67,6 @@
"@types/ember-data__store": "^4.0.7",
"@types/ember-qunit": "^3.4.14",
"@types/ember-resolver": "^5.0.10",
"@types/htmlbars-inline-precompile": "^1.0.1",
"@types/node": "^16.10.3",
"@types/qunit": "^2.11.2",
"@types/rsvp": "^4.0.4",
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/config/environment.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

module.exports = function (environment) {
let ENV = {
const ENV = {
modulePrefix: 'dummy',
environment,
rootURL: '/',
Expand Down
Loading