@nachocab/pipedream-global 2.0.40 → 2.0.42

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/index.js CHANGED
@@ -1,6 +1,8 @@
1
1
  require('./src/util');
2
2
  const { getFormattedStudents } = require('./src/get_formatted_students');
3
3
 
4
+ const moment = require('moment');
5
+
4
6
  const {
5
7
  nestedArrayToArrayOfObjects,
6
8
  objectOfArraysToNestedArray,
@@ -19,6 +21,7 @@ const { getMatchesFromNonMatches } = require('./src/get_matches_from_non_matches
19
21
 
20
22
  // REMEMBER TO ADD HERE AND ALSO IN THE ABOVE REQUIRES!!!
21
23
  module.exports = {
24
+ moment,
22
25
  getFormattedStudents,
23
26
  getMeetingType,
24
27
  nestedArrayToArrayOfObjects,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nachocab/pipedream-global",
3
- "version": "2.0.40",
3
+ "version": "2.0.42",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,5 +1,4 @@
1
1
  const expect = require('chai').expect;
2
-
3
2
  const { parseClassEmail } = require('../src/parse_class_email');
4
3
 
5
4
  describe('parseClassEmail', function () {