@ryanatkn/gro 0.140.1 → 0.140.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/filer.js CHANGED
@@ -55,7 +55,7 @@ export class Filer {
55
55
  // The specifier `path` has now been mapped to its final form, so we can inspect it.
56
56
  const resolved = path[0] === '.' || path[0] === '/'
57
57
  ? resolve_specifier(path, dir)
58
- : resolve_node_specifier(path, dir);
58
+ : resolve_node_specifier(path);
59
59
  const { path_id } = resolved;
60
60
  dependencies_removed.delete(path_id);
61
61
  if (!dependencies_before.has(path_id)) {
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.140.1',
4
+ version: '0.140.2',
5
5
  description: 'task runner and toolkit extending SvelteKit',
6
6
  motto: 'generate, run, optimize',
7
7
  glyph: '🌰',
@@ -264,7 +264,7 @@ export const package_json = {
264
264
  };
265
265
  export const src_json = {
266
266
  name: '@ryanatkn/gro',
267
- version: '0.140.1',
267
+ version: '0.140.2',
268
268
  modules: {
269
269
  '.': {
270
270
  path: 'index.ts',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryanatkn/gro",
3
- "version": "0.140.1",
3
+ "version": "0.140.2",
4
4
  "description": "task runner and toolkit extending SvelteKit",
5
5
  "motto": "generate, run, optimize",
6
6
  "glyph": "🌰",
package/src/lib/filer.ts CHANGED
@@ -98,7 +98,7 @@ export class Filer {
98
98
  const resolved =
99
99
  path[0] === '.' || path[0] === '/'
100
100
  ? resolve_specifier(path, dir)
101
- : resolve_node_specifier(path, dir);
101
+ : resolve_node_specifier(path);
102
102
  const {path_id} = resolved;
103
103
 
104
104
  dependencies_removed.delete(path_id);
@@ -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.140.1',
8
+ version: '0.140.2',
9
9
  description: 'task runner and toolkit extending SvelteKit',
10
10
  motto: 'generate, run, optimize',
11
11
  glyph: '🌰',
@@ -270,7 +270,7 @@ export const package_json = {
270
270
 
271
271
  export const src_json = {
272
272
  name: '@ryanatkn/gro',
273
- version: '0.140.1',
273
+ version: '0.140.2',
274
274
  modules: {
275
275
  '.': {
276
276
  path: 'index.ts',