@ctx-core/core-js 11.0.36 → 11.0.40

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/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @ctx-core/core-js
2
2
 
3
+ ## 11.0.40
4
+
5
+ ### Patch Changes
6
+
7
+ - version bump
8
+ - Updated dependencies
9
+ - @ctx-core/object@22.0.10
10
+ - @ctx-core/package@9.1.22
11
+
12
+ ## 11.0.39
13
+
14
+ ### Patch Changes
15
+
16
+ - .js + .d.ts instead of .ts
17
+ - Updated dependencies
18
+ - @ctx-core/package@9.1.21
19
+
20
+ ## 11.0.38
21
+
22
+ ### Patch Changes
23
+
24
+ - fix: error TS6059: \* is not under 'rootDir': package.json: types: ./dist/index.d.ts
25
+ - Updated dependencies
26
+ - @ctx-core/object@22.0.8
27
+ - @ctx-core/package@9.1.20
28
+
29
+ ## 11.0.37
30
+
31
+ ### Patch Changes
32
+
33
+ - tsconfig.json: "target": "ES2021"
34
+ - Updated dependencies
35
+ - @ctx-core/object@22.0.7
36
+ - @ctx-core/package@9.1.19
37
+
3
38
  ## 11.0.36
4
39
 
5
40
  ### Patch Changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ctx-core/core-js",
3
- "version": "11.0.36",
3
+ "version": "11.0.40",
4
4
  "description": "ctx-core core-js",
5
5
  "keywords": [
6
6
  "ctx-core",
@@ -17,20 +17,20 @@
17
17
  "license": "Apache-2.0",
18
18
  "author": "Brian Takita",
19
19
  "type": "module",
20
- "types": "./src/index.ts",
20
+ "types": "./lib/index.d.ts",
21
21
  "exports": {
22
22
  ".": {
23
- "import": "./dist/index.js"
23
+ "import": "./lib/index.js"
24
24
  },
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "dependencies": {
28
- "@ctx-core/object": "^22.0.6",
29
- "@ctx-core/package": "^9.1.18"
28
+ "@ctx-core/object": "^22.0.10",
29
+ "@ctx-core/package": "^9.1.22"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@swc/cli": "^0.1.55",
33
- "@swc/core": "^1.2.120",
33
+ "@swc/core": "^1.2.125",
34
34
  "rimraf": "^3.0.2",
35
35
  "typescript": "next"
36
36
  },
@@ -38,14 +38,14 @@
38
38
  "access": "public",
39
39
  "cache": "~/.npm"
40
40
  },
41
- "svelte": "./dist/index.js",
41
+ "svelte": "./lib/index.js",
42
42
  "scripts": {
43
43
  "build": "npm run compile",
44
- "clean": "rimraf dist && npm run clean_tsbuildinfo",
45
- "clean_tsbuildinfo": "rm -f tsconfig.tsbuildinfo && rm -f dist/**/*.d.ts",
46
- "compile": "npm run compile_source && npm run compile_declaration",
47
- "compile_source": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
48
- "compile_declaration": "npm run clean_tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir dist",
44
+ "clean": "rimraf lib && npm run clean:tsbuildinfo",
45
+ "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
46
+ "compile": "npm run compile:source && npm run compile:declaration",
47
+ "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
48
+ "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
49
49
  "exec": "$@"
50
50
  }
51
51
  }
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compileOnSave": true,
3
3
  "compilerOptions": {
4
- "target": "ES2020",
4
+ "target": "ES2021",
5
5
  "composite": true,
6
6
  "declaration": true,
7
7
  "sourceMap": true,
@@ -22,15 +22,15 @@
22
22
  "node_modules/@types"
23
23
  ],
24
24
  "rootDir": "src",
25
- "outDir": "dist",
26
- "declarationDir": "dist",
25
+ "outDir": "lib",
26
+ "declarationDir": "lib",
27
27
  "lib": ["dom", "ESNext"],
28
28
  "importsNotUsedAsValues": "error",
29
29
  "strict": true
30
30
  },
31
31
  "exclude": [
32
32
  "node_modules",
33
- "dist"
33
+ "lib"
34
34
  ],
35
35
  "references": []
36
36
  }