remove .idea
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,2 +1,4 @@
|
||||
/node_modules/
|
||||
/.env
|
||||
|
||||
.idea
|
||||
|
||||
5
.idea/.gitignore
generated
vendored
5
.idea/.gitignore
generated
vendored
@@ -1,5 +0,0 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
8
.idea/modules.xml
generated
8
.idea/modules.xml
generated
@@ -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
12
.idea/tmdb-ts.iml
generated
@@ -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
6
.idea/vcs.xml
generated
@@ -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>
|
||||
13
src/tmdb.ts
13
src/tmdb.ts
@@ -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);
|
||||
})()
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user