@auto-engineer/design-system-importer 0.11.3 → 0.11.5
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-format.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/.turbo/turbo-test.log +1 -1
- package/.turbo/turbo-type-check.log +1 -1
- package/CHANGELOG.md +16 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @auto-engineer/design-system-importer@0.11.
|
|
3
|
+
> @auto-engineer/design-system-importer@0.11.5 build /Users/sam/WebstormProjects/top/auto-engineer-3/packages/design-system-importer
|
|
4
4
|
> tsc && tsx ../../scripts/fix-esm-imports.ts && cp -r src/utils/templates dist/src/utils/
|
|
5
5
|
|
|
6
6
|
Fixed ESM imports in dist/
|
package/.turbo/turbo-format.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/design-system-importer@0.11.
|
|
2
|
+
> @auto-engineer/design-system-importer@0.11.3 format /Users/sam/WebstormProjects/top/auto-engineer-3/packages/design-system-importer
|
|
3
3
|
> prettier --write "**/*.{js,ts,json,md,yml,yaml}" --ignore-path ../../.prettierignore --log-level warn
|
|
4
4
|
|
package/.turbo/turbo-lint.log
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
> @auto-engineer/design-system-importer@0.11.
|
|
2
|
+
> @auto-engineer/design-system-importer@0.11.3 lint /Users/sam/WebstormProjects/top/auto-engineer-3/packages/design-system-importer
|
|
3
3
|
> eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.ts
|
|
4
4
|
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @auto-engineer/design-system-importer@0.11.
|
|
3
|
+
> @auto-engineer/design-system-importer@0.11.5 test /Users/sam/WebstormProjects/top/auto-engineer-3/packages/design-system-importer
|
|
4
4
|
> vitest run --reporter=dot
|
|
5
5
|
|
|
6
6
|
[?25l
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @auto-engineer/design-system-importer@0.11.
|
|
3
|
+
> @auto-engineer/design-system-importer@0.11.5 type-check /Users/sam/WebstormProjects/top/auto-engineer-3/packages/design-system-importer
|
|
4
4
|
> tsc --noEmit
|
|
5
5
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @auto-engineer/design-system-importer
|
|
2
2
|
|
|
3
|
+
## 0.11.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix paths and deps issues
|
|
8
|
+
|
|
9
|
+
- Updated dependencies []:
|
|
10
|
+
- @auto-engineer/message-bus@0.11.5
|
|
11
|
+
|
|
12
|
+
## 0.11.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies []:
|
|
17
|
+
- @auto-engineer/message-bus@0.11.4
|
|
18
|
+
|
|
3
19
|
## 0.11.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"figma-api": "2.0.2-beta",
|
|
17
17
|
"tsx": "^3.12.7",
|
|
18
|
-
"@auto-engineer/message-bus": "0.11.
|
|
18
|
+
"@auto-engineer/message-bus": "0.11.5"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@auto-engineer/cli": "0.11.
|
|
21
|
+
"@auto-engineer/cli": "0.11.5"
|
|
22
22
|
},
|
|
23
|
-
"version": "0.11.
|
|
23
|
+
"version": "0.11.5",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"start": "tsx src/index.ts",
|
|
26
26
|
"build": "tsc && tsx ../../scripts/fix-esm-imports.ts && cp -r src/utils/templates dist/src/utils/",
|