@takeshape/streams 8.102.2 → 8.106.1
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/{lib → dist}/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
package/{lib → dist}/index.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/{lib → dist}/streams.js
RENAMED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/streams",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.106.1",
|
|
4
4
|
"description": "Stream helpers",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=14"
|
|
14
14
|
},
|
|
15
|
-
"main": "
|
|
15
|
+
"main": "dist/index.js",
|
|
16
16
|
"module": "es/index.js",
|
|
17
|
-
"types": "
|
|
17
|
+
"types": "dist/index.d.ts",
|
|
18
18
|
"files": [
|
|
19
|
-
"
|
|
19
|
+
"dist",
|
|
20
20
|
"es"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"test-changed": "pnpm run test -- --changedSince=master",
|
|
39
39
|
"test:ci": "JEST_JUNIT_OUTPUT_DIR=\"${HOME}/test-results/${npm_package_name#*\\/}\" JEST_JUNIT_OUTPUT_NAME=jest-results.xml jest --ci --reporters=default --reporters=jest-junit",
|
|
40
40
|
"typecheck": "tsc --noEmit",
|
|
41
|
-
"clean": "rimraf build
|
|
41
|
+
"clean": "rimraf build dist es *.tsbuildinfo",
|
|
42
42
|
"build": "pnpm build:types && pnpm build:js && pnpm build:es && pnpm build:copy",
|
|
43
43
|
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
|
|
44
|
-
"build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir
|
|
44
|
+
"build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
45
45
|
"build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
|
|
46
|
-
"build:copy": "cp -rf build/src/*
|
|
46
|
+
"build:copy": "cp -rf build/src/* dist/",
|
|
47
47
|
"will-it-blend": "pnpm typecheck && pnpm lint -- --quiet && pnpm test -- --silent --coverage false",
|
|
48
48
|
"todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
|
|
49
49
|
},
|