@sprucelabs/mercury-event-emitter 42.0.2 → 42.0.3
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 +20 -20
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "42.0.
|
|
6
|
+
"version": "42.0.3",
|
|
7
7
|
"files": [
|
|
8
8
|
"build"
|
|
9
9
|
],
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"url": "https://github.com/sprucelabsai/mercury-workspace/issues"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build.ci": "yarn build.tsc && yarn build.resolve-paths && yarn lint",
|
|
35
|
-
"build.dev": "yarn build.tsc --sourceMap ; yarn resolve-paths.lint",
|
|
34
|
+
"build.ci": "yarn run build.tsc && yarn run build.resolve-paths && yarn run lint",
|
|
35
|
+
"build.dev": "yarn run build.tsc --sourceMap ; yarn run resolve-paths.lint",
|
|
36
36
|
"build.copy-files": "mkdir -p build && rsync -avzq --exclude='*.ts' ./src/ ./build/",
|
|
37
37
|
"build.dist": "tsc --project tsconfig.dist.json && yarn build.resolve-paths && mv build esm && yarn build.esm-postbuild && yarn build.tsc && yarn build.resolve-paths && mv esm build/ && yarn clean.dist",
|
|
38
38
|
"build.esm-postbuild": "esm-postbuild --target esm --patterns '**/*.js'",
|
|
39
39
|
"build.resolve-paths": "resolve-path-aliases --target build --patterns '**/*.js,**/*.d.ts'",
|
|
40
40
|
"build.tsc": "yarn build.copy-files && tsc",
|
|
41
41
|
"build.types": "tsc --emitDeclarationOnly && echo PASS",
|
|
42
|
-
"clean": "yarn clean.build",
|
|
43
|
-
"clean.all": "yarn clean.dependencies && yarn clean.build",
|
|
42
|
+
"clean": "yarn run clean.build",
|
|
43
|
+
"clean.all": "yarn run clean.dependencies && yarn run clean.build",
|
|
44
44
|
"clean.build": "rm -rf build/",
|
|
45
45
|
"clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
|
|
46
46
|
"clean.dist": "rm -rf build/__tests__ build/esm/__tests__",
|
|
@@ -50,30 +50,30 @@
|
|
|
50
50
|
"release": "semantic-release",
|
|
51
51
|
"test": "jest",
|
|
52
52
|
"update.dependencies": "cd ../ && yarn rebuild.dependencies",
|
|
53
|
-
"watch.lint": "concurrently 'yarn lint' \"chokidar 'src/**/*' -c 'yarn lint.tsc'\"",
|
|
53
|
+
"watch.lint": "concurrently 'yarn run lint' \"chokidar 'src/**/*' -c 'yarn run lint.tsc'\"",
|
|
54
54
|
"watch.tsc": "tsc -w",
|
|
55
|
-
"post.watch.build": "yarn build.copy-files && yarn build.resolve-paths",
|
|
56
|
-
"watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn post.watch.build'",
|
|
55
|
+
"post.watch.build": "yarn run build.copy-files && yarn run build.resolve-paths",
|
|
56
|
+
"watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn run post.watch.build'",
|
|
57
57
|
"lint.tsc": "tsc -p . --noEmit",
|
|
58
|
-
"resolve-paths.lint": "yarn build.resolve-paths ; yarn lint",
|
|
58
|
+
"resolve-paths.lint": "yarn run build.resolve-paths ; yarn run lint",
|
|
59
59
|
"upgrade.packages": "yarn-upgrade-all && rm -f yarn.lock ; yarn ; yarn fix.lint ; true",
|
|
60
60
|
"upgrade.packages.all": "yarn install && yarn upgrade.packages",
|
|
61
61
|
"upgrade.packages.test": "yarn upgrade.packages.all && yarn lint && yarn build.dev && yarn test",
|
|
62
|
-
"watch.rebuild": "yarn clean.all && yarn install && yarn watch.build.dev"
|
|
62
|
+
"watch.rebuild": "yarn run clean.all && yarn install && yarn run watch.build.dev"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@sprucelabs/error": "^6.0.
|
|
66
|
-
"@sprucelabs/mercury-types": "^47.0.
|
|
67
|
-
"@sprucelabs/schema": "^30.0.
|
|
68
|
-
"@sprucelabs/spruce-event-utils": "^40.0.
|
|
65
|
+
"@sprucelabs/error": "^6.0.3",
|
|
66
|
+
"@sprucelabs/mercury-types": "^47.0.2",
|
|
67
|
+
"@sprucelabs/schema": "^30.0.4",
|
|
68
|
+
"@sprucelabs/spruce-event-utils": "^40.0.2"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@sprucelabs/esm-postbuild": "^6.0.
|
|
72
|
-
"@sprucelabs/jest-json-reporter": "^8.0.
|
|
73
|
-
"@sprucelabs/resolve-path-aliases": "^2.0.
|
|
71
|
+
"@sprucelabs/esm-postbuild": "^6.0.3",
|
|
72
|
+
"@sprucelabs/jest-json-reporter": "^8.0.1",
|
|
73
|
+
"@sprucelabs/resolve-path-aliases": "^2.0.5",
|
|
74
74
|
"@sprucelabs/semantic-release": "^5.0.1",
|
|
75
|
-
"@sprucelabs/test": "^9.0.
|
|
76
|
-
"@sprucelabs/test-utils": "^5.0.
|
|
75
|
+
"@sprucelabs/test": "^9.0.4",
|
|
76
|
+
"@sprucelabs/test-utils": "^5.0.3",
|
|
77
77
|
"@types/node": "^20.12.7",
|
|
78
78
|
"chokidar-cli": "^3.0.0",
|
|
79
79
|
"concurrently": "^8.2.2",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"^#spruce/(.*)$": "<rootDir>/build/.spruce/$1"
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "e6723349207d04dc25aaa2acaf87744d9cdb0c02"
|
|
109
109
|
}
|