remove .idea

This commit is contained in:
Blake Joynes
2021-05-15 00:28:22 -04:00
parent bf8b31d82a
commit 28cdc72bce
6 changed files with 2 additions and 44 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,4 @@
/node_modules/
/.env
.idea

5
.idea/.gitignore generated vendored
View File

@@ -1,5 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/

8
.idea/modules.xml generated
View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/tmdb-ts.iml" filepath="$PROJECT_DIR$/.idea/tmdb-ts.iml" />
</modules>
</component>
</project>

12
.idea/tmdb-ts.iml generated
View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/vcs.xml generated
View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@@ -1,6 +1,4 @@
import { Account } from "./endpoints/account";
import {config} from "./config";
import fetch from "node-fetch";
import {Certification} from "./endpoints/certification";
import {Change} from "./endpoints/changes";
@@ -24,18 +22,7 @@ export class TMDB {
return new Change(this.accessToken);
}
}
const tmdb = new TMDB(config.accessToken!);
(async () => {
const changes = await tmdb.changes.movies()
console.log(changes);
})()