@jdeighan/coffee-utils 16.0.15 → 16.0.16

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jdeighan/coffee-utils",
3
3
  "type": "module",
4
- "version": "16.0.15",
4
+ "version": "16.0.16",
5
5
  "description": "A set of utility functions for CoffeeScript",
6
6
  "main": "coffee_utils.js",
7
7
  "exports": {
@@ -46,14 +46,14 @@
46
46
  },
47
47
  "homepage": "https://github.com/johndeighan/coffee-utils#readme",
48
48
  "dependencies": {
49
- "@jdeighan/base-utils": "^8.0.16",
49
+ "@jdeighan/base-utils": "^8.0.17",
50
50
  "cross-env": "^7.0.3",
51
51
  "n-readlines": "^1.0.1",
52
52
  "readline-sync": "^1.4.10",
53
53
  "svelte": "^4.1.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@jdeighan/unit-tester": "^3.0.65",
56
+ "@jdeighan/unit-tester": "^3.0.66",
57
57
  "ava": "^6.0.1"
58
58
  }
59
59
  }
@@ -10,7 +10,7 @@ import {LOG, LOGVALUE, LOGTAML} from '@jdeighan/base-utils/log'
10
10
  import {
11
11
  dbg, dbgEnter, dbgReturn, dbgYield, dbgResume,
12
12
  } from '@jdeighan/base-utils/debug'
13
- import {isTAML, fromTAML} from '@jdeighan/base-utils/ll-taml'
13
+ import {isTAML, fromTAML} from '@jdeighan/base-utils/taml'
14
14
 
15
15
  import {Section} from '@jdeighan/coffee-utils/section'
16
16
 
@@ -43,7 +43,7 @@ import {
43
43
  import {
44
44
  isTAML,
45
45
  fromTAML
46
- } from '@jdeighan/base-utils/ll-taml';
46
+ } from '@jdeighan/base-utils/taml';
47
47
 
48
48
  import {
49
49
  Section
package/src/lib/fs.coffee CHANGED
@@ -22,7 +22,7 @@ import {
22
22
  import {assert, croak} from '@jdeighan/base-utils/exceptions'
23
23
  import {LOG, LOGVALUE} from '@jdeighan/base-utils/log'
24
24
  import {dbg, dbgEnter, dbgReturn} from '@jdeighan/base-utils/debug'
25
- import {fromTAML} from '@jdeighan/base-utils/ll-taml'
25
+ import {fromTAML} from '@jdeighan/base-utils/taml'
26
26
 
27
27
  export {
28
28
  mydir, mkpath, isFile, isDir, rmFileSync, mkdirSync,
package/src/lib/fs.js CHANGED
@@ -74,7 +74,7 @@ import {
74
74
 
75
75
  import {
76
76
  fromTAML
77
- } from '@jdeighan/base-utils/ll-taml';
77
+ } from '@jdeighan/base-utils/taml';
78
78
 
79
79
  export {
80
80
  mydir,