@graphcommerce/changeset-changelog 5.2.0-canary.8 → 6.0.0-canary.20

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
@@ -1,5 +1,29 @@
1
1
  # @graphcommerce/changeset-changelog
2
2
 
3
+ ## 6.0.0-canary.20
4
+
5
+ ## 5.2.0-canary.19
6
+
7
+ ## 5.2.0-canary.18
8
+
9
+ ## 5.2.0-canary.17
10
+
11
+ ## 5.2.0-canary.16
12
+
13
+ ## 5.2.0-canary.15
14
+
15
+ ## 5.2.0-canary.14
16
+
17
+ ## 5.2.0-canary.13
18
+
19
+ ## 5.2.0-canary.12
20
+
21
+ ## 5.2.0-canary.11
22
+
23
+ ## 5.2.0-canary.10
24
+
25
+ ## 5.2.0-canary.9
26
+
3
27
  ## 5.2.0-canary.8
4
28
 
5
29
  ## 5.2.0-canary.7
package/dist/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ // eslint-disable-next-line import/no-extraneous-dependencies
3
4
  const get_github_info_1 = require("@changesets/get-github-info");
4
5
  const changelogFunctions = {
5
6
  getDependencyReleaseLine: () => Promise.resolve(''),
package/package.json CHANGED
@@ -2,14 +2,14 @@
2
2
  "name": "@graphcommerce/changeset-changelog",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "5.2.0-canary.8",
5
+ "version": "6.0.0-canary.20",
6
+ "type": "commonjs",
6
7
  "main": "dist/index.js",
7
- "typings": "dist/index.d.ts",
8
+ "types": "src/index.ts",
8
9
  "scripts": {
9
10
  "dev": "tsc -W --preserveWatchOutput",
10
- "generate": "node dist/generate.js",
11
11
  "build": "tsc",
12
- "prepack": "yarn build"
12
+ "prepack": "tsc"
13
13
  },
14
14
  "dependencies": {
15
15
  "@changesets/changelog-github": "0.4.8"
package/src/index.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import githubDefault from '@changesets/changelog-github'
2
+ // eslint-disable-next-line import/no-extraneous-dependencies
2
3
  import { getInfo, getInfoFromPullRequest } from '@changesets/get-github-info'
3
4
 
4
5
  const changelogFunctions: typeof githubDefault = {
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "exclude": ["**/node_modules", "example", "dist", "**/.*/", "__tests__"],
2
+ "exclude": ["**/node_modules", "example", "dist", "**/.*/", "__tests__", "__mocks__"],
3
3
  "include": ["**/*.ts", "**/*.tsx"],
4
4
  "extends": "@graphcommerce/typescript-config-pwa/node.json",
5
5
  "compilerOptions": {
@@ -8,7 +8,6 @@
8
8
  "noLib": false,
9
9
  "noEmit": false,
10
10
  "sourceMap": false,
11
- "declaration": true,
12
11
  "strict": true
13
12
  }
14
13
  }
package/dist/index.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import githubDefault from '@changesets/changelog-github';
2
- declare const changelogFunctions: typeof githubDefault;
3
- export default changelogFunctions;