@anmiles/google-api-wrapper 17.0.1 → 17.0.2

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/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [17.0.2](../../tags/v17.0.2) - 2024-01-16
9
+ ### Changed
10
+ - Speed-up tests by isolating modules
11
+
8
12
  ## [17.0.1](../../tags/v17.0.1) - 2024-01-16
9
13
  ### Changed
10
14
  - Expose `api` from class `API`
package/README.md CHANGED
@@ -60,3 +60,7 @@ getProfiles().map(async (profile) => {
60
60
  });
61
61
 
62
62
  ```
63
+
64
+ ### Live examples
65
+ - [youtube-likes-downloader](https://www.npmjs.com/package/youtube-likes-downloader) - download all liked videos from youtube
66
+ - [google-calendar-entries](https://www.npmjs.com/package/google-calendar-entries) - view and manage google calendar entries
package/jest.config.js CHANGED
@@ -1,7 +1,10 @@
1
1
  module.exports = {
2
2
  preset : 'ts-jest',
3
3
  transform : {
4
- '^.+\\.tsx?$' : 'ts-jest',
4
+ '^.+\\.tsx?$' : [ 'ts-jest', {
5
+ isolatedModules : true, // otherwise tests are slowing down a lot because of googleapis
6
+ tsconfig : './tsconfig.test.json',
7
+ } ],
5
8
  },
6
9
 
7
10
  clearMocks : true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anmiles/google-api-wrapper",
3
- "version": "17.0.1",
3
+ "version": "17.0.2",
4
4
  "description": "Provides quick interface for getting google API data",
5
5
  "keywords": [
6
6
  "google",
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+
4
+ "compilerOptions": {
5
+ "moduleResolution": "Node",
6
+ },
7
+ }