@graphcommerce/changeset-changelog 0.0.0

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.
@@ -0,0 +1,3 @@
1
+ import githubDefault from '@changesets/changelog-github';
2
+ declare const changelogFunctions: typeof githubDefault;
3
+ export default changelogFunctions;
package/dist/index.js ADDED
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const changelog_github_1 = __importDefault(require("@changesets/changelog-github"));
7
+ const changelogFunctions = {
8
+ getDependencyReleaseLine: () => Promise.resolve(''),
9
+ getReleaseLine: changelog_github_1.default.getReleaseLine,
10
+ };
11
+ exports.default = changelogFunctions;
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@graphcommerce/changeset-changelog",
3
+ "homepage": "https://www.graphcommerce.org/",
4
+ "repository": "github:graphcommerce-org/graphcommerce",
5
+ "version": "0.0.0",
6
+ "main": "dist/index.js",
7
+ "typings": "dist/index.d.ts",
8
+ "scripts": {
9
+ "dev": "tsc -W --preserveWatchOutput",
10
+ "generate": "node dist/generate.js",
11
+ "build": "tsc",
12
+ "prepack": "yarn build"
13
+ },
14
+ "dependencies": {
15
+ "@changesets/changelog-github": "0.4.6"
16
+ }
17
+ }
package/src/index.ts ADDED
@@ -0,0 +1,8 @@
1
+ import githubDefault from '@changesets/changelog-github'
2
+
3
+ const changelogFunctions: typeof githubDefault = {
4
+ getDependencyReleaseLine: () => Promise.resolve(''),
5
+ getReleaseLine: githubDefault.getReleaseLine,
6
+ }
7
+
8
+ export default changelogFunctions
package/tsconfig.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "exclude": ["**/node_modules", "example", "dist", "**/.*/", "__tests__"],
3
+ "include": ["**/*.ts", "**/*.tsx"],
4
+ "extends": "@graphcommerce/typescript-config-pwa/node.json",
5
+ "compilerOptions": {
6
+ "rootDir": "src",
7
+ "outDir": "dist",
8
+ "noLib": false,
9
+ "noEmit": false,
10
+ "sourceMap": false,
11
+ "declaration": true,
12
+ "strict": true
13
+ }
14
+ }