@amplitude/analytics-node 1.5.29 → 1.5.30-SR-2360.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.
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.5.29";
1
+ export declare const VERSION = "1.5.30-SR-2360.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,qBAAqB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.5.29';
4
+ exports.VERSION = '1.5.30-SR-2360.0';
5
5
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAC","sourcesContent":["export const VERSION = '1.5.29';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,kBAAkB,CAAC","sourcesContent":["export const VERSION = '1.5.30-SR-2360.0';\n"]}
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.5.29";
1
+ export declare const VERSION = "1.5.30-SR-2360.0";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,qBAAqB,CAAC"}
@@ -1,2 +1,2 @@
1
- export var VERSION = '1.5.29';
1
+ export var VERSION = '1.5.30-SR-2360.0';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,QAAQ,CAAC","sourcesContent":["export const VERSION = '1.5.29';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,kBAAkB,CAAC","sourcesContent":["export const VERSION = '1.5.30-SR-2360.0';\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amplitude/analytics-node",
3
- "version": "1.5.29",
3
+ "version": "1.5.30-SR-2360.0",
4
4
  "description": "Official Amplitude SDK for NodeJS",
5
5
  "author": "Amplitude Inc",
6
6
  "homepage": "https://github.com/amplitude/Amplitude-TypeScript",
@@ -17,31 +17,30 @@
17
17
  "type": "git",
18
18
  "url": "git+https://github.com/amplitude/Amplitude-TypeScript.git"
19
19
  },
20
+ "bugs": {
21
+ "url": "https://github.com/amplitude/Amplitude-TypeScript/issues"
22
+ },
23
+ "dependencies": {
24
+ "tslib": "^2.4.1",
25
+ "@amplitude/analytics-core": "2.36.0-SR-2360.0"
26
+ },
27
+ "files": [
28
+ "lib"
29
+ ],
20
30
  "scripts": {
21
- "build": "yarn build:es5 & yarn build:esm",
31
+ "build": "pnpm build:es5 & pnpm build:esm",
22
32
  "build:es5": "tsc -p ./tsconfig.es5.json",
23
33
  "build:esm": "tsc -p ./tsconfig.esm.json",
24
34
  "clean": "rimraf node_modules lib coverage",
25
- "fix": "yarn fix:eslint & yarn fix:prettier",
35
+ "fix": "pnpm fix:eslint & pnpm fix:prettier",
26
36
  "fix:eslint": "eslint '{src,test}/**/*.ts' --fix",
27
37
  "fix:prettier": "prettier --write \"{src,test}/**/*.ts\"",
28
- "lint": "yarn lint:eslint & yarn lint:prettier",
38
+ "lint": "pnpm lint:eslint & pnpm lint:prettier",
29
39
  "lint:eslint": "eslint '{src,test}/**/*.ts'",
30
40
  "lint:prettier": "prettier --check \"{src,test}/**/*.ts\"",
31
41
  "test": "jest",
32
42
  "typecheck": "tsc -p ./tsconfig.json",
33
- "version": "yarn version-file && yarn build",
43
+ "version": "pnpm version-file && pnpm build",
34
44
  "version-file": "node -p \"'export const VERSION = \\'' + require('./package.json').version + '\\';'\" > src/version.ts"
35
- },
36
- "bugs": {
37
- "url": "https://github.com/amplitude/Amplitude-TypeScript/issues"
38
- },
39
- "dependencies": {
40
- "@amplitude/analytics-core": "2.35.0",
41
- "tslib": "^2.4.1"
42
- },
43
- "files": [
44
- "lib"
45
- ],
46
- "gitHead": "9b4b123bd1dfed030e6a5857de7a8ee7d52d6f40"
47
- }
45
+ }
46
+ }