@ryanatkn/gro 0.143.1 → 0.143.2

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/dist/package.js CHANGED
@@ -1,7 +1,7 @@
1
1
  // generated by src/lib/package.gen.ts
2
2
  export const package_json = {
3
3
  name: '@ryanatkn/gro',
4
- version: '0.143.1',
4
+ version: '0.143.2',
5
5
  description: 'task runner and toolkit extending SvelteKit',
6
6
  motto: 'generate, run, optimize',
7
7
  glyph: '🌰',
@@ -261,7 +261,7 @@ export const package_json = {
261
261
  };
262
262
  export const src_json = {
263
263
  name: '@ryanatkn/gro',
264
- version: '0.143.1',
264
+ version: '0.143.2',
265
265
  modules: {
266
266
  '.': {
267
267
  path: 'index.ts',
@@ -92,9 +92,9 @@ export const task = {
92
92
  throw Error('changeset version failed: no commits were made: see the error above');
93
93
  }
94
94
  if (!preserve_changelog) {
95
- const token = load_from_env('GITHUB_TOKEN_SECRET');
95
+ const token = load_from_env('SECRET_GITHUB_API_TOKEN');
96
96
  if (!token) {
97
- log.warn('the env var GITHUB_TOKEN_SECRET was not found, so API calls with be unauthorized');
97
+ log.warn('the env var SECRET_GITHUB_API_TOKEN was not found, so API calls with be unauthorized');
98
98
  }
99
99
  await update_changelog(parsed_repo_url.owner, parsed_repo_url.repo, changelog, token, log);
100
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryanatkn/gro",
3
- "version": "0.143.1",
3
+ "version": "0.143.2",
4
4
  "description": "task runner and toolkit extending SvelteKit",
5
5
  "motto": "generate, run, optimize",
6
6
  "glyph": "🌰",
@@ -5,7 +5,7 @@ import type {Src_Json} from './src_json.js';
5
5
 
6
6
  export const package_json = {
7
7
  name: '@ryanatkn/gro',
8
- version: '0.143.1',
8
+ version: '0.143.2',
9
9
  description: 'task runner and toolkit extending SvelteKit',
10
10
  motto: 'generate, run, optimize',
11
11
  glyph: '🌰',
@@ -267,7 +267,7 @@ export const package_json = {
267
267
 
268
268
  export const src_json = {
269
269
  name: '@ryanatkn/gro',
270
- version: '0.143.1',
270
+ version: '0.143.2',
271
271
  modules: {
272
272
  '.': {
273
273
  path: 'index.ts',
@@ -130,10 +130,10 @@ export const task: Task<Args> = {
130
130
  }
131
131
 
132
132
  if (!preserve_changelog) {
133
- const token = load_from_env('GITHUB_TOKEN_SECRET');
133
+ const token = load_from_env('SECRET_GITHUB_API_TOKEN');
134
134
  if (!token) {
135
135
  log.warn(
136
- 'the env var GITHUB_TOKEN_SECRET was not found, so API calls with be unauthorized',
136
+ 'the env var SECRET_GITHUB_API_TOKEN was not found, so API calls with be unauthorized',
137
137
  );
138
138
  }
139
139
  await update_changelog(parsed_repo_url.owner, parsed_repo_url.repo, changelog, token, log);