@takeshape/streams 9.1.6 → 9.1.9

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.
Files changed (1) hide show
  1. package/package.json +15 -15
package/package.json CHANGED
@@ -1,17 +1,14 @@
1
1
  {
2
2
  "name": "@takeshape/streams",
3
- "version": "9.1.6",
3
+ "version": "9.1.9",
4
4
  "description": "Stream helpers",
5
5
  "homepage": "https://www.takeshape.io",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "github.com:takeshape/takeshape.git"
9
9
  },
10
- "author": "asprouse",
11
10
  "license": "UNLICENSED",
12
- "engines": {
13
- "node": ">=16"
14
- },
11
+ "author": "asprouse",
15
12
  "main": "dist/index.js",
16
13
  "module": "es/index.js",
17
14
  "types": "dist/index.d.ts",
@@ -31,19 +28,22 @@
31
28
  "@types/pump": "^1.1.0",
32
29
  "@types/through2": "^2.0.36"
33
30
  },
31
+ "engines": {
32
+ "node": ">=16"
33
+ },
34
34
  "scripts": {
35
- "lint": "eslint . --ext .js,.ts",
36
- "lint:code:ci": "eslint . --ext .js,.ts --format junit -o \"${HOME}/test-results/${npm_package_name#*\\/}/eslint-results.xml\"",
35
+ "build": "pnpm build:types && pnpm build:js && pnpm build:es && pnpm build:copy",
36
+ "build:copy": "cp -rf build/src/* dist/",
37
+ "build:es": "cross-env BABEL_MODULES=es babel src --out-dir es --extensions \".js,.ts\" --ignore '**/__tests__'",
38
+ "build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
39
+ "build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
40
+ "clean": "rimraf build dist es *.tsbuildinfo",
41
+ "lint": "eslint . --ext .js,.ts,.json",
42
+ "lint:code:ci": "pnpm lint --quiet --format junit -o \"${HOME}/test-results/${npm_package_name#*\\/}/eslint-results.xml\"",
37
43
  "test": "jest",
38
44
  "test-changed": "pnpm run test --changedSince=master",
39
45
  "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
- "typecheck": "tsc --noEmit",
41
- "clean": "rimraf build dist es *.tsbuildinfo",
42
- "build": "pnpm build:types && pnpm build:js && pnpm build:es && pnpm build:copy",
43
- "build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
44
- "build:js": "cross-env BABEL_MODULES=commonjs babel src --out-dir dist --extensions \".js,.ts\" --ignore '**/__tests__'",
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/* dist/",
47
- "todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'"
46
+ "todo": "leasot 'src/**/*.{js,jsx,ts,tsx}'",
47
+ "typecheck": "tsc --noEmit"
48
48
  }
49
49
  }