skikrumb-api 1.0.1 → 1.0.3

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.
@@ -4,6 +4,7 @@
4
4
  </div>
5
5
 
6
6
  #### skiKrumb Tracker Software - &copy; skiKrumb Trackers Inc.
7
+ A wrapper for the skiKrumb API to use in Node.js and Client applications
7
8
  ## Install skiKrumb API
8
9
  ```bash
9
10
  $ yarn add skikrumb-api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skikrumb-api",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Wrapper for the skiKrumb API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/tsconfig.json CHANGED
@@ -11,6 +11,7 @@
11
11
  },
12
12
  "exclude": [
13
13
  "node_modules",
14
- "dist"
14
+ "dist",
15
+ ".idea"
15
16
  ]
16
17
  }