@google-cloud/debug-agent
Advanced tools
Comparing version 5.2.8 to 5.2.9
@@ -48,7 +48,16 @@ /// <reference types="node" /> | ||
* | ||
* @example findScriptsFuzzy('a/b.js', ['/d/b.js']) // -> ['/d/b.js'] | ||
* @example findScriptsFuzzy('a/b.js', ['/c/b.js', '/d/b.js']); // -> [] | ||
* @example findScriptsFuzzy('a/b.js', ['/x/a/b.js', '/y/a/b.js']) | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/d/b.js']) // -> ['/d/b.js'] | ||
* ``` | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/c/b.js', '/d/b.js']); // -> [] | ||
* ``` | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/x/a/b.js', '/y/a/b.js']) | ||
* // -> ['x/a/b.js', 'y/a/b.js'] | ||
* | ||
* ``` | ||
* @param {string} scriptPath partial path to the script. | ||
@@ -55,0 +64,0 @@ * @param {array<string>} fileList an array of absolute paths of filenames |
@@ -108,7 +108,16 @@ "use strict"; | ||
* | ||
* @example findScriptsFuzzy('a/b.js', ['/d/b.js']) // -> ['/d/b.js'] | ||
* @example findScriptsFuzzy('a/b.js', ['/c/b.js', '/d/b.js']); // -> [] | ||
* @example findScriptsFuzzy('a/b.js', ['/x/a/b.js', '/y/a/b.js']) | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/d/b.js']) // -> ['/d/b.js'] | ||
* ``` | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/c/b.js', '/d/b.js']); // -> [] | ||
* ``` | ||
* @example | ||
* ``` | ||
* findScriptsFuzzy('a/b.js', ['/x/a/b.js', '/y/a/b.js']) | ||
* // -> ['x/a/b.js', 'y/a/b.js'] | ||
* | ||
* ``` | ||
* @param {string} scriptPath partial path to the script. | ||
@@ -115,0 +124,0 @@ * @param {array<string>} fileList an array of absolute paths of filenames |
@@ -13,5 +13,7 @@ import { DebugAgentConfig, StackdriverConfig } from './agent/config'; | ||
* @example | ||
* ``` | ||
* debug.startAgent(); | ||
* ``` | ||
*/ | ||
export declare function start(options?: DebugAgentConfig | StackdriverConfig): Debuglet | IsReady; | ||
export declare function get(): Debuglet | undefined; |
@@ -33,3 +33,5 @@ "use strict"; | ||
* @example | ||
* ``` | ||
* debug.startAgent(); | ||
* ``` | ||
*/ | ||
@@ -36,0 +38,0 @@ function start(options) { |
{ | ||
"name": "@google-cloud/debug-agent", | ||
"version": "5.2.8", | ||
"version": "5.2.9", | ||
"author": "Google Inc.", | ||
@@ -60,11 +60,11 @@ "description": "Stackdriver Debug Agent for Node.js", | ||
"devDependencies": { | ||
"@compodoc/compodoc": "1.1.13", | ||
"@compodoc/compodoc": "1.1.19", | ||
"@types/acorn": "^4.0.2", | ||
"@types/console-log-level": "^1.4.0", | ||
"@types/estree": "0.0.50", | ||
"@types/estree": "0.0.51", | ||
"@types/extend": "^3.0.0", | ||
"@types/mocha": "^8.0.0", | ||
"@types/mocha": "^9.0.0", | ||
"@types/mv": "^2.1.0", | ||
"@types/ncp": "^2.0.3", | ||
"@types/node": "^14.17.2", | ||
"@types/node": "^16.0.0", | ||
"@types/proxyquire": "^1.3.28", | ||
@@ -71,0 +71,0 @@ "@types/semver": "^7.0.0", |
@@ -7,5 +7,4 @@ [//]: # "This README.md file is auto-generated, all changes to this file will be lost." | ||
[![release level](https://img.shields.io/badge/release%20level-beta-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages) | ||
[![release level](https://img.shields.io/badge/release%20level-preview-yellow.svg?style=flat)](https://cloud.google.com/terms/launch-stages) | ||
[![npm version](https://img.shields.io/npm/v/@google-cloud/debug-agent.svg)](https://www.npmjs.org/package/@google-cloud/debug-agent) | ||
[![codecov](https://img.shields.io/codecov/c/github/googleapis/cloud-debug-nodejs/main.svg?style=flat)](https://codecov.io/gh/googleapis/cloud-debug-nodejs) | ||
@@ -79,32 +78,33 @@ | ||
Node.js. | ||
If you are using an end-of-life version of Node.js, we recommend that you update | ||
as soon as possible to an actively supported LTS version. | ||
Google's client libraries support legacy versions of Node.js runtimes on a | ||
best-efforts basis with the following warnings: | ||
* Legacy versions are not tested in continuous integration. | ||
* Some security patches and features cannot be backported. | ||
* Dependencies cannot be kept up-to-date. | ||
Client libraries targeting some end-of-life versions of Node.js are available, and | ||
can be installed via npm [dist-tags](https://docs.npmjs.com/cli/dist-tag). | ||
can be installed through npm [dist-tags](https://docs.npmjs.com/cli/dist-tag). | ||
The dist-tags follow the naming convention `legacy-(version)`. | ||
For example, `npm install @google-cloud/debug-agent@legacy-8` installs client libraries | ||
for versions compatible with Node.js 8. | ||
_Legacy Node.js versions are supported as a best effort:_ | ||
## Versioning | ||
* Legacy versions will not be tested in continuous integration. | ||
* Some security patches may not be able to be backported. | ||
* Dependencies will not be kept up-to-date, and features will not be backported. | ||
This library follows [Semantic Versioning](http://semver.org/). | ||
#### Legacy tags available | ||
* `legacy-8`: install client libraries from this dist-tag for versions | ||
compatible with Node.js 8. | ||
## Versioning | ||
This library follows [Semantic Versioning](http://semver.org/). | ||
This library is considered to be in **beta**. This means it is expected to be | ||
mostly stable while we work toward a general availability release; however, | ||
complete stability is not guaranteed. We will address issues and requests | ||
against beta libraries with a high priority. | ||
This library is considered to be in **preview**. This means it is still a | ||
work-in-progress and under active development. Any release is subject to | ||
backwards-incompatible changes at any time. | ||
More Information: [Google Cloud Platform Launch Stages][launch_stages] | ||
@@ -111,0 +111,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
453061
5813