@dbml/cli 3.13.0-alpha.0 → 3.13.0-alpha.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.
@@ -8,6 +8,8 @@ var _winston = require("winston");
8
8
  var _chalk = _interopRequireDefault(require("chalk"));
9
9
  var _path = _interopRequireDefault(require("path"));
10
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+ /* eslint-disable import/no-import-module-exports */
12
+
11
13
  const {
12
14
  combine,
13
15
  timestamp,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbml/cli",
3
- "version": "3.13.0-alpha.0",
3
+ "version": "3.13.0-alpha.2",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "license": "Apache-2.0",
@@ -26,8 +26,8 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@babel/cli": "^7.21.0",
29
- "@dbml/connector": "^3.13.0-alpha.0",
30
- "@dbml/core": "^3.13.0-alpha.0",
29
+ "@dbml/connector": "^3.13.0-alpha.2",
30
+ "@dbml/core": "^3.13.0-alpha.2",
31
31
  "bluebird": "^3.5.5",
32
32
  "chalk": "^2.4.2",
33
33
  "commander": "^2.20.0",
@@ -55,7 +55,7 @@
55
55
  "^.+\\.js$": "babel-jest"
56
56
  }
57
57
  },
58
- "gitHead": "6b6edb8bc9804cd65849451820f1d43072d8c01c",
58
+ "gitHead": "2a00c9bde5b128f5463344b6567248c3a1d7f7a1",
59
59
  "engines": {
60
60
  "node": ">=18"
61
61
  }
@@ -1,3 +1,4 @@
1
+ /* eslint-disable import/no-import-module-exports */
1
2
  import { createLogger, format, transports } from 'winston';
2
3
  import chalk from 'chalk';
3
4
  import path from 'path';
package/tsconfig.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDirs": ["./src", "./"], /* Allow multiple folders to be treated as one when resolving modules. */
5
+ "baseUrl": "./src", /* Specify the base directory to resolve non-relative module names. */
6
+ "outDir": "./lib" /* Specify an output folder for all emitted files. */
7
+ },
8
+ "files": ["package.json"],
9
+ "include": ["src/**/*", "__test__/**/*"]
10
+ }