compose-regexp
Advanced tools
Comparing version 0.6.10 to 0.6.11
@@ -5,5 +5,13 @@ # Change Log | ||
## v0.6.11 | ||
*2022-05-05* | ||
### Bug fixes | ||
- Fix the postinstall script | ||
## v0.6.10 | ||
*2022-05-04* | ||
*2022-05-05* | ||
@@ -10,0 +18,0 @@ Another dummy release to test the npm postpublish script |
{ | ||
"name": "compose-regexp", | ||
"version": "0.6.10", | ||
"version": "0.6.11", | ||
"description": "A set of functions to build and compose complex regular expressions", | ||
@@ -24,3 +24,3 @@ "type": "module", | ||
"postpublish": "node ./scripts/postpublish.js && npm install && gosub test", | ||
"release":"NPM_PUBLISH=1 npm publish", | ||
"release": "NPM_PUBLISH=1 npm publish", | ||
"rollup": "rollup compose-regexp.js -o commonjs/compose-regexp.js -f umd -n composeRegexp --amd.id compose-regexp", | ||
@@ -47,3 +47,3 @@ "test": "gosub build-regexp && ospec" | ||
"devDependencies": { | ||
"compose-regexp": "0.6.9", | ||
"compose-regexp": "0.6.10", | ||
"gosub": "1.1.0", | ||
@@ -54,2 +54,2 @@ "ospec": "^4.1.1", | ||
} | ||
} | ||
} |
import fs from 'fs' | ||
import { command, readFromCmd } from './utils.js' | ||
import { command } from './utils.js' | ||
import pkg from '../package.json' assert { type: 'json' } | ||
@@ -13,3 +13,3 @@ | ||
await git('push', '--flags') | ||
await git('push', '--tags') | ||
@@ -26,2 +26,2 @@ pkg.devDependencies['compose-regexp'] = version | ||
await git('commit', 'push') | ||
await git('push', 'origin', 'main') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
152521