gatsby-attainlabs-cms 1.0.20 → 1.0.22

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.
Files changed (2) hide show
  1. package/gatsby-node.js +1 -0
  2. package/package.json +3 -2
package/gatsby-node.js CHANGED
@@ -3,6 +3,7 @@ const https = require("https");
3
3
  const path = require("path");
4
4
  const prettier = require("prettier");
5
5
  const fse = require("fs-extra");
6
+ const crypto = require("crypto");
6
7
 
7
8
  const brands = {
8
9
  LendDirect: "lenddirect",
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "gatsby-attainlabs-cms",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
- "build": "tsc"
9
+ "build": "tsc",
10
+ "publish" : "npm version minor && npm publish"
10
11
  },
11
12
  "author": "Anthony Barrera",
12
13
  "license": "ISC",