@certd/jdcloud 1.40.0 → 1.40.2

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.40.2](https://github.com/certd/certd/compare/v1.40.1...v1.40.2) (2026-05-19)
7
+
8
+ **Note:** Version bump only for package @certd/jdcloud
9
+
10
+ ## [1.40.1](https://github.com/certd/certd/compare/v1.40.0...v1.40.1) (2026-05-18)
11
+
12
+ **Note:** Version bump only for package @certd/jdcloud
13
+
6
14
  # [1.40.0](https://github.com/certd/certd/compare/v1.39.16...v1.40.0) (2026-05-14)
7
15
 
8
16
  **Note:** Version bump only for package @certd/jdcloud
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@certd/jdcloud",
3
- "version": "1.40.0",
3
+ "version": "1.40.2",
4
4
  "description": "jdcloud openApi sdk",
5
5
  "main": "./dist/bundle.js",
6
6
  "module": "./dist/bundle.js",
7
7
  "types": "./dist/d/index.d.ts",
8
8
  "scripts": {
9
- "build": "rollup -c ",
9
+ "before-build": "node -e \"const fs=require('fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('tsconfig.tsbuildinfo',{force:true});fs.rmSync('.rollup.cache',{recursive:true,force:true});\"",
10
+ "build": "npm run before-build && rollup -c ",
10
11
  "dev-build": "npm run build",
11
12
  "test:unit": "cross-env NODE_ENV=unittest echo no unit tests",
12
13
  "pub": "npm publish"
@@ -58,5 +59,5 @@
58
59
  "fetch"
59
60
  ]
60
61
  },
61
- "gitHead": "5801f34b3a40cbbd591805e401613b397bec9775"
62
+ "gitHead": "678b70cee8510a2b5217788c5db9469f49cbd439"
62
63
  }
package/rollup.config.js CHANGED
@@ -9,6 +9,7 @@ module.exports = {
9
9
  output: {
10
10
  file: "dist/bundle.js",
11
11
  format: "cjs",
12
+ sourcemap: false,
12
13
  },
13
14
  plugins: [
14
15
  // 解析第三方依赖
@@ -22,10 +23,13 @@ module.exports = {
22
23
  // ],
23
24
  }),
24
25
  Typescript({
26
+ tsconfig: "./tsconfig.build.json",
25
27
  target: "esnext",
26
28
  rootDir: "src",
27
29
  declaration: true,
28
30
  declarationDir: "dist/d",
31
+ sourceMap: false,
32
+ inlineSourceMap: false,
29
33
  exclude: ["./node_modules/**", "./src/**/*.vue", "./src/**/*.spec.ts"],
30
34
  allowSyntheticDefaultImports: true,
31
35
  }),
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "./tsconfig.json",
3
+ "compilerOptions": {
4
+ "sourceMap": false,
5
+ "inlineSourceMap": false
6
+ }
7
+ }
package/tsconfig.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "composite": false,
22
22
  "useDefineForClassFields": true,
23
23
  "strict": false,
24
- "sourceMap": false,
24
+ "sourceMap": true,
25
25
  "inlineSourceMap": false,
26
26
  "resolveJsonModule": true,
27
27
  "isolatedModules": false,
package/dist/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- export declare const JDCloud: any;
2
- export declare const JDService: any;
3
- export declare const JDDomainService: any;
4
- export declare const JDCdnService: any;
5
- export declare const JDSslService: any;
package/dist/index.js DELETED
@@ -1,11 +0,0 @@
1
- import jdCloud from "./lib/core.js";
2
- import jdService from './lib/service.js';
3
- import domainService from './repo/domainservice/v2/domainservice.js';
4
- import cdnService from './repo/cdn/v1/cdn.js';
5
- import sslService from './repo/ssl/v1/ssl.js';
6
- export const JDCloud = jdCloud;
7
- export const JDService = jdService;
8
- export const JDDomainService = domainService;
9
- export const JDCdnService = cdnService;
10
- export const JDSslService = sslService;
11
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAO,eAAe,CAAC;AACrC,OAAO,SAAS,MAAM,kBAAkB,CAAA;AAExC,OAAO,aAAa,MAAM,0CAA0C,CAAA;AACpE,OAAO,UAAU,MAAM,sBAAsB,CAAA;AAC7C,OAAO,UAAU,MAAM,sBAAsB,CAAA;AAC7C,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC;AAC/B,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC;AACnC,MAAM,CAAC,MAAM,eAAe,GAAG,aAAa,CAAC;AAC7C,MAAM,CAAC,MAAM,YAAY,GAAG,UAAU,CAAC;AACvC,MAAM,CAAC,MAAM,YAAY,GAAG,UAAU,CAAC"}