@collabdt/core 0.2.1 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@collabdt/core",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "CDT Core contains all the core technology for your CDT platform",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,6 +11,10 @@
11
11
  "types": "./dist/index.d.ts",
12
12
  "import": "./dist/index.js"
13
13
  },
14
+ "./messages": {
15
+ "types": "./dist/core/i18n/index.d.ts",
16
+ "import": "./dist/core/i18n/index.js"
17
+ },
14
18
  "./*": {
15
19
  "types": "./dist/*.d.ts",
16
20
  "import": "./dist/*.js"
@@ -29,12 +33,12 @@
29
33
  "NOTICE"
30
34
  ],
31
35
  "scripts": {
32
- "build": "tsup && node scripts/copy-css.mjs && node scripts/build-types.mjs",
33
- "build:js": "tsup && node scripts/copy-css.mjs",
36
+ "build": "tsup && node scripts/copy-assets.mjs && node scripts/build-types.mjs",
37
+ "build:js": "tsup && node scripts/copy-assets.mjs",
34
38
  "build:types": "node scripts/build-types.mjs",
35
39
  "build:types:strict": "tsc -p tsconfig.build.json",
36
- "dev": "tsup --watch --onSuccess \"node scripts/copy-css.mjs\"",
37
- "dev:link": "tsup --watch --onSuccess \"node scripts/copy-css.mjs && yalc push --no-scripts\"",
40
+ "dev": "tsup --watch --onSuccess \"node scripts/copy-assets.mjs\"",
41
+ "dev:link": "tsup --watch --onSuccess \"node scripts/copy-assets.mjs && yalc push --no-scripts\"",
38
42
  "lint": "eslint src --ext .ts,.tsx",
39
43
  "license:headers": "node scripts/add-license-headers.mjs",
40
44
  "license:check": "node scripts/add-license-headers.mjs --check",