@jitsu/protocols 1.3.1-canary.300.20231019133936 → 1.3.1-canary.300.20231019141252

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.
@@ -0,0 +1,5 @@
1
+ @jitsu/protocols:build: cache hit, replaying output 22b3d5af05e43d81
2
+ @jitsu/protocols:build: 
3
+ @jitsu/protocols:build: > @jitsu/protocols@0.0.0 build /Users/ildarnurislamov/Projects/newjitsu/types/protocols
4
+ @jitsu/protocols:build: > tsc -p .
5
+ @jitsu/protocols:build: 
@@ -0,0 +1,5 @@
1
+ @jitsu/protocols:clean: cache hit, replaying output af92744365495cf5
2
+ @jitsu/protocols:clean: 
3
+ @jitsu/protocols:clean: > @jitsu/protocols@0.0.0 clean /Users/ildarnurislamov/Projects/newjitsu/types/protocols
4
+ @jitsu/protocols:clean: > rm -rf ./dist
5
+ @jitsu/protocols:clean: 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jitsu/protocols",
3
- "version": "1.3.1-canary.300.20231019133936",
3
+ "version": "1.3.1-canary.300.20231019141252",
4
4
  "description": "",
5
5
  "author": "Jitsu Dev Team <dev@jitsu.com>",
6
6
  "publishConfig": {
@@ -9,5 +9,9 @@
9
9
  "license": "MIT",
10
10
  "private": false,
11
11
  "devDependencies": {},
12
- "scripts": {}
12
+ "scripts": {
13
+ "build": "tsc -p .",
14
+ "compile": "tsc -p .",
15
+ "clean": "rm -rf ./dist"
16
+ }
13
17
  }
package/tsconfig.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "compilerOptions": {
3
+ "rootDir": "./",
4
+ "outDir": "./dist",
5
+ "declaration": true,
6
+ "esModuleInterop": true,
7
+ "target": "ES2019",
8
+ "module": "commonjs",
9
+ "lib": ["ES2019", "dom"],
10
+ "noEmit": true
11
+ },
12
+ "exclude": [
13
+ "__tests__",
14
+ "node_modules",
15
+ "dist",
16
+ "test_projects",
17
+ "test",
18
+ "templates"
19
+ ]
20
+ }