@dword-design/base 9.5.21 → 9.5.22

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.
@@ -27,7 +27,7 @@ Object {
27
27
  "matchStrings": Array [
28
28
  "(^|\\\\s)gitHubAction\`(?<depName>.*?)@v(?<currentValue>.*?)\`",
29
29
  ],
30
- "versioning": "npm",
30
+ "versioningTemplate": "npm",
31
31
  },
32
32
  ],
33
33
  "semanticCommitScope": null,
@@ -89,7 +89,7 @@ Object {
89
89
  "matchStrings": Array [
90
90
  "(^|\\\\s)gitHubAction\`(?<depName>.*?)@v(?<currentValue>.*?)\`",
91
91
  ],
92
- "versioning": "npm",
92
+ "versioningTemplate": "npm",
93
93
  },
94
94
  ],
95
95
  "semanticCommitScope": null,
@@ -123,7 +123,7 @@ Object {
123
123
  "matchStrings": Array [
124
124
  "(^|\\\\s)gitHubAction\`(?<depName>.*?)@v(?<currentValue>.*?)\`",
125
125
  ],
126
- "versioning": "npm",
126
+ "versioningTemplate": "npm",
127
127
  },
128
128
  ],
129
129
  "semanticCommitScope": null,
@@ -17,7 +17,7 @@ export default function () {
17
17
  datasourceTemplate: 'github-tags',
18
18
  fileMatch: ['\\.js$'],
19
19
  matchStrings: ['(^|\\s)gitHubAction`(?<depName>.*?)@v(?<currentValue>.*?)`'],
20
- versioning: 'npm'
20
+ versioningTemplate: 'npm'
21
21
  }],
22
22
  semanticCommitScope: null
23
23
  };
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import endent from "@dword-design/functions/dist/endent.js";
2
2
  import identity from "@dword-design/functions/dist/identity.js";
3
3
  import mapValues from "@dword-design/functions/dist/map-values.js";
4
+ import jitiBabelTransform from '@dword-design/jiti-babel-transform';
4
5
  import deepmerge from 'deepmerge';
5
6
  import depcheck from 'depcheck';
6
7
  import depcheckDetectorExeca from 'depcheck-detector-execa';
@@ -45,6 +46,7 @@ class Base {
45
46
  const jitiInstance = jiti(process.cwd(), {
46
47
  esmResolve: true,
47
48
  interopDefault: true,
49
+ transform: jitiBabelTransform,
48
50
  transformOptions: {
49
51
  babel: babelConfig
50
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base",
3
- "version": "9.5.21",
3
+ "version": "9.5.22",
4
4
  "description": "Base package for projects.",
5
5
  "repository": "dword-design/base",
6
6
  "funding": "https://github.com/sponsors/dword-design",
@@ -33,6 +33,7 @@
33
33
  "@dword-design/ci": "^3.0.0",
34
34
  "@dword-design/eslint-config": "^3.0.6",
35
35
  "@dword-design/functions": "^4.0.0",
36
+ "@dword-design/jiti-babel-transform": "^1.0.7",
36
37
  "@dword-design/personal-data": "^1.0.1",
37
38
  "@dword-design/pretest": "^1.0.0",
38
39
  "@dword-design/setup-test": "^1.0.2",