@ryanatkn/gro 0.112.5 → 0.113.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.
package/README.md CHANGED
@@ -31,6 +31,7 @@ It includes:
31
31
  and [SvelteKit](https://github.com/sveltejs/kit)
32
32
  - defers to SvelteKit and Vite for the frontend and
33
33
  [`@sveltejs/package`](https://kit.svelte.dev/docs/packaging) for the library
34
+ - exposes all of its internals in `$lib`
34
35
  - uses [Changesets](https://github.com/changesets/changesets) for versioning and changelogs
35
36
  - provides a [Node loader](/src/lib/loader.ts) and
36
37
  [esbuild plugins for the server](/src/lib/gro_plugin_server.ts)
package/dist/package.d.ts CHANGED
@@ -18,10 +18,8 @@ export declare const package_json: {
18
18
  type: string;
19
19
  url: string;
20
20
  };
21
- bugs: {
22
- url: string;
23
- email: string;
24
- };
21
+ bugs: string;
22
+ funding: string;
25
23
  type: string;
26
24
  engines: {
27
25
  node: string;
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.112.5',
4
+ version: '0.113.0',
5
5
  description: 'task runner and toolkit extending SvelteKit',
6
6
  icon: '🌰',
7
7
  public: true,
@@ -10,7 +10,8 @@ export const package_json = {
10
10
  homepage: 'https://gro.ryanatkn.com/',
11
11
  author: { name: 'Ryan Atkinson', email: 'mail@ryanatkn.com', url: 'https://www.ryanatkn.com/' },
12
12
  repository: { type: 'git', url: 'git+https://github.com/ryanatkn/gro.git' },
13
- bugs: { url: 'https://github.com/ryanatkn/gro/issues', email: 'mail@ryanatkn.com' },
13
+ bugs: 'https://github.com/ryanatkn/gro/issues',
14
+ funding: 'https://www.ryanatkn.com/funding',
14
15
  type: 'module',
15
16
  engines: { node: '>=20.10' },
16
17
  scripts: {
@@ -31,10 +32,10 @@ export const package_json = {
31
32
  ],
32
33
  files: ['dist'],
33
34
  dependencies: {
34
- '@ryanatkn/belt': '^0.20.8',
35
+ '@ryanatkn/belt': '^0.20.10',
35
36
  chokidar: '^3.6.0',
36
37
  dotenv: '^16.4.5',
37
- 'es-module-lexer': '^1.4.2',
38
+ 'es-module-lexer': '^1.5.0',
38
39
  kleur: '^4.1.5',
39
40
  mri: '^1.2.0',
40
41
  prettier: '^3.2.5',
@@ -49,21 +50,21 @@ export const package_json = {
49
50
  '@changesets/changelog-git': '^0.2.0',
50
51
  '@changesets/types': '^6.0.0',
51
52
  '@ryanatkn/eslint-config': '^0.1.0',
52
- '@ryanatkn/fuz': '^0.91.3',
53
+ '@ryanatkn/fuz': '^0.92.0',
53
54
  '@sveltejs/adapter-static': '^3.0.1',
54
55
  '@sveltejs/kit': '^2.5.4',
55
56
  '@sveltejs/package': '^2.3.0',
56
57
  '@sveltejs/vite-plugin-svelte': '^3.0.2',
57
58
  '@types/fs-extra': '^11.0.4',
58
59
  '@types/node': '^20.11.30',
59
- '@typescript-eslint/eslint-plugin': '^7.3.1',
60
- '@typescript-eslint/parser': '^7.3.1',
60
+ '@typescript-eslint/eslint-plugin': '^7.4.0',
61
+ '@typescript-eslint/parser': '^7.4.0',
61
62
  esbuild: '^0.19.0',
62
63
  eslint: '^8.57.0',
63
64
  'eslint-plugin-svelte': '^2.35.1',
64
65
  svelte: '^4.2.12',
65
66
  'svelte-check': '^3.6.8',
66
- typescript: '^5.4.2',
67
+ typescript: '^5.4.3',
67
68
  uvu: '^0.5.6',
68
69
  },
69
70
  eslintConfig: { root: true, extends: '@ryanatkn', rules: { 'no-console': 1 } },
@@ -233,7 +234,7 @@ export const package_json = {
233
234
  };
234
235
  export const src_json = {
235
236
  name: '@ryanatkn/gro',
236
- version: '0.112.5',
237
+ version: '0.113.0',
237
238
  modules: {
238
239
  '.': {
239
240
  path: 'index.ts',
@@ -611,7 +612,6 @@ export const src_json = {
611
612
  { name: 'Package_Meta', kind: 'type' },
612
613
  { name: 'parse_package_meta', kind: 'function' },
613
614
  { name: 'parse_repo_name', kind: 'function' },
614
- { name: 'format_host', kind: 'function' },
615
615
  { name: 'parse_org_url', kind: 'function' },
616
616
  ],
617
617
  },
@@ -19,5 +19,4 @@ export interface Package_Meta {
19
19
  }
20
20
  export declare const parse_package_meta: (url: Flavored<string, "Url">, package_json: Package_Json, src_json: Src_Json) => Package_Meta;
21
21
  export declare const parse_repo_name: (name: string) => string;
22
- export declare const format_host: (url: string) => string;
23
22
  export declare const parse_org_url: (pkg: Package_Meta) => string | null;
@@ -35,7 +35,6 @@ export const parse_package_meta = (url, package_json, src_json) => {
35
35
  };
36
36
  // TODO proper parsing
37
37
  export const parse_repo_name = (name) => name[0] === '@' ? name.split('/')[1] : name;
38
- export const format_host = (url) => strip_start(new URL(url).host, 'www.');
39
38
  export const parse_org_url = (pkg) => {
40
39
  const { repo_name, repo_url } = pkg;
41
40
  if (!repo_url)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryanatkn/gro",
3
- "version": "0.112.5",
3
+ "version": "0.113.0",
4
4
  "description": "task runner and toolkit extending SvelteKit",
5
5
  "icon": "🌰",
6
6
  "public": true,
@@ -18,10 +18,8 @@
18
18
  "type": "git",
19
19
  "url": "git+https://github.com/ryanatkn/gro.git"
20
20
  },
21
- "bugs": {
22
- "url": "https://github.com/ryanatkn/gro/issues",
23
- "email": "mail@ryanatkn.com"
24
- },
21
+ "bugs": "https://github.com/ryanatkn/gro/issues",
22
+ "funding": "https://www.ryanatkn.com/funding",
25
23
  "type": "module",
26
24
  "engines": {
27
25
  "node": ">=20.10"
@@ -46,10 +44,10 @@
46
44
  "dist"
47
45
  ],
48
46
  "dependencies": {
49
- "@ryanatkn/belt": "^0.20.8",
47
+ "@ryanatkn/belt": "^0.20.10",
50
48
  "chokidar": "^3.6.0",
51
49
  "dotenv": "^16.4.5",
52
- "es-module-lexer": "^1.4.2",
50
+ "es-module-lexer": "^1.5.0",
53
51
  "kleur": "^4.1.5",
54
52
  "mri": "^1.2.0",
55
53
  "prettier": "^3.2.5",
@@ -67,21 +65,21 @@
67
65
  "@changesets/changelog-git": "^0.2.0",
68
66
  "@changesets/types": "^6.0.0",
69
67
  "@ryanatkn/eslint-config": "^0.1.0",
70
- "@ryanatkn/fuz": "^0.91.3",
68
+ "@ryanatkn/fuz": "^0.92.0",
71
69
  "@sveltejs/adapter-static": "^3.0.1",
72
70
  "@sveltejs/kit": "^2.5.4",
73
71
  "@sveltejs/package": "^2.3.0",
74
72
  "@sveltejs/vite-plugin-svelte": "^3.0.2",
75
73
  "@types/fs-extra": "^11.0.4",
76
74
  "@types/node": "^20.11.30",
77
- "@typescript-eslint/eslint-plugin": "^7.3.1",
78
- "@typescript-eslint/parser": "^7.3.1",
75
+ "@typescript-eslint/eslint-plugin": "^7.4.0",
76
+ "@typescript-eslint/parser": "^7.4.0",
79
77
  "esbuild": "^0.19.0",
80
78
  "eslint": "^8.57.0",
81
79
  "eslint-plugin-svelte": "^2.35.1",
82
80
  "svelte": "^4.2.12",
83
81
  "svelte-check": "^3.6.8",
84
- "typescript": "^5.4.2",
82
+ "typescript": "^5.4.3",
85
83
  "uvu": "^0.5.6"
86
84
  },
87
85
  "eslintConfig": {