@stack-dev/core 0.1.0 → 0.1.1
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 +22 -23
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
- package/.turbo/turbo-check-types.log +0 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m987.00 B[39m
|
|
1
|
+
|
|
2
|
+
> @stack-dev/core@0.1.1 build /home/runner/work/stack-dev/stack-dev/packages/core
|
|
3
|
+
> tsup
|
|
4
|
+
|
|
5
|
+
CLI Building entry: src/index.ts
|
|
6
|
+
CLI Using tsconfig: tsconfig.json
|
|
7
|
+
CLI tsup v7.3.0
|
|
8
|
+
CLI Using tsup config: /home/runner/work/stack-dev/stack-dev/packages/core/tsup.config.ts
|
|
9
|
+
CLI Target: esnext
|
|
10
|
+
CLI Cleaning output folder
|
|
11
|
+
ESM Build start
|
|
12
|
+
CJS Build start
|
|
13
|
+
CJS dist/index.js 3.06 KB
|
|
14
|
+
CJS dist/index.js.map 4.53 KB
|
|
15
|
+
CJS ⚡️ Build success in 22ms
|
|
16
|
+
ESM dist/index.mjs 1.88 KB
|
|
17
|
+
ESM dist/index.mjs.map 4.31 KB
|
|
18
|
+
ESM ⚡️ Build success in 23ms
|
|
19
|
+
DTS Build start
|
|
20
|
+
DTS ⚡️ Build success in 1057ms
|
|
21
|
+
DTS dist/index.d.mts 987.00 B
|
|
22
|
+
DTS dist/index.d.ts 987.00 B
|
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stack-dev/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"eslint": "^9.32.0",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"tsup": "^7.3.0",
|
|
10
10
|
"vitest": "^3.2.4",
|
|
11
11
|
"@vitest/coverage-v8": "^3.2.4",
|
|
12
|
-
"@stack-dev/eslint-config": "0.1.
|
|
13
|
-
"@stack-dev/prettier-config": "0.1.
|
|
14
|
-
"@stack-dev/typescript-config": "0.1.
|
|
12
|
+
"@stack-dev/eslint-config": "0.1.1",
|
|
13
|
+
"@stack-dev/prettier-config": "0.1.1",
|
|
14
|
+
"@stack-dev/typescript-config": "0.1.1"
|
|
15
15
|
},
|
|
16
16
|
"main": "dist/index.js",
|
|
17
17
|
"module": "dist/index.mjs",
|