Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

string-remove-widows

Package Overview
Dependencies
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

string-remove-widows - npm Package Compare versions

Comparing version 4.0.0 to 4.0.1

8

CHANGELOG.md

@@ -6,8 +6,4 @@ # Change Log

# [4.0.0](https://github.com/codsen/codsen/compare/string-remove-widows@3.1.26...string-remove-widows@4.0.0) (2022-12-01)
## 4.0.0 (2022-12-01)
### Features
- drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
### BREAKING CHANGES

@@ -17,3 +13,3 @@

# 3.1.0 (2022-08-12)
## 3.1.0 (2022-08-12)

@@ -20,0 +16,0 @@ ### Features

{
"name": "string-remove-widows",
"version": "4.0.0",
"version": "4.0.1",
"description": "Helps to prevent widow words in a text",

@@ -42,18 +42,18 @@ "keywords": [

"scripts": {
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
"build": "node '../../ops/scripts/esbuild.js' && npm run dts",
"cjs-off": "exit 0",
"cjs-on": "exit 0",
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && npm run dts",
"devtest": "c8 npm run unit && npm run examples && npm run lint",
"dts": "rollup -c && npm run prettier -- 'types/index.d.ts' --write --loglevel 'silent'",
"examples": "node '../../ops/scripts/run-examples.js'",
"lect": "node '../../ops/lect/lect.js' && yarn run prettier 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
"letspublish": "yarn publish || :",
"lect": "node '../../ops/lect/lect.js' && npm run prettier -- 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
"letspublish": "npm publish || :",
"lint": "eslint . --ext .js --ext .ts --fix",
"perf": "node perf/check.js",
"prepare": "echo 'ready'",
"prep": "echo 'ready'",
"prettier": "prettier",
"prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
"pretest": "yarn run lect && yarn run build",
"test": "yarn run devtest",
"prettier:format": "npm run prettier -- --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern --loglevel 'silent'",
"pretest": "npm run lect && npm run build",
"test": "npm run devtest",
"unit": "uvu test"

@@ -79,10 +79,10 @@ },

"dependencies": {
"ranges-apply": "^7.0.0",
"ranges-push": "^7.0.0",
"string-left-right": "^6.0.0",
"string-match-left-right": "^9.0.0"
"ranges-apply": "^7.0.1",
"ranges-push": "^7.0.1",
"string-left-right": "^6.0.1",
"string-match-left-right": "^9.0.1"
},
"devDependencies": {
"string-strip-html": "^13.0.0"
"string-strip-html": "^13.0.1"
}
}

@@ -1,5 +0,5 @@

declare type Range =
type Range =
| [from: number, to: number]
| [from: number, to: number, whatToInsert: string | null | undefined];
declare type Ranges = Range[] | null;
type Ranges = Range[] | null;

@@ -6,0 +6,0 @@ declare const version: string;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc