@excilone/core-test 1.0.0

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/dist/index.cjs ADDED
@@ -0,0 +1 @@
1
+ function e(e){console.log(`[core-test] ${e}`)}exports.log=e;
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare function log(message: string): void;
3
+ //#endregion
4
+ export { log };
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare function log(message: string): void;
3
+ //#endregion
4
+ export { log };
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ function e(e){console.log(`[core-test] ${e}`)}export{e as log};
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@excilone/core-test",
3
+ "version": "1.0.0",
4
+ "description": "Testing monorepo",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.mts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.mts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/excilone/monorepo.git"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "devDependencies": {
33
+ "tsdown": "0.19.0-beta.5"
34
+ },
35
+ "scripts": {
36
+ "build": "tsdown"
37
+ }
38
+ }