New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@good-fences/api

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@good-fences/api - npm Package Compare versions

Comparing version

to
0.4.0

src/unused_finder/export_collector_tests.rs

1

.beachball.js

@@ -7,2 +7,3 @@ /** @typedef {import("beachball/lib/types/BeachballOptions").RepoOptions} RepoOptions */

access: "public",
scope: ['!npm/*']
};

@@ -5,17 +5,70 @@ {

{
"date": "Thu, 09 Mar 2023 18:10:37 GMT",
"tag": "@good-fences/api_v0.1.5",
"version": "0.1.5",
"date": "Fri, 29 Sep 2023 22:45:54 GMT",
"version": "0.4.0",
"tag": "@good-fences/api_v0.4.0",
"comments": {
"patch": [
"minor": [
{
"author": "edgar21_9@hotmail.com",
"package": "@good-fences/api",
"commit": "8478859a94a3f5c87d0c5dfc408f8a52a47473df",
"comment": "Removed changefiles, added registry with token to beachbal config file"
"commit": "32116ec11f382ca6adaf08f0176c857b9122b255",
"comment": "Upgraded swc"
}
]
}
},
{
"date": "Fri, 29 Sep 2023 17:46:29 GMT",
"version": "0.3.0",
"tag": "@good-fences/api_v0.3.0",
"comments": {
"none": [
{
"author": "edgar21_9@hotmail.com",
"package": "@good-fences/api",
"commit": "9d79ba9177ae4befd8872eaf019783a42a058644",
"comment": "Update .beachball.js"
}
]
}
},
{
"date": "Wed, 06 Sep 2023 18:43:57 GMT",
"version": "0.3.0",
"tag": "@good-fences/api_v0.3.0",
"comments": {
"minor": [
{
"author": "edgar21_9@hotmail.com",
"package": "@good-fences/api",
"commit": "734ac3b45581a578ba1c72101085ec15fd5f988b",
"comment": "Added comments to config"
}
]
}
},
{
"date": "Fri, 01 Sep 2023 15:09:07 GMT",
"version": "0.2.0",
"tag": "@good-fences/api_v0.2.0",
"comments": {
"none": [
{
"author": "edgar21_9@hotmail.com",
"package": "@good-fences/api",
"commit": "84411f8e5e17744e9f451b7fa95972acdfb0a7e8",
"comment": "Removed not-needed changefiles"
}
],
"minor": [
{
"author": "edgar21_9@hotmail.com",
"package": "@good-fences/api",
"commit": "84411f8e5e17744e9f451b7fa95972acdfb0a7e8",
"comment": "Changed validations done to check if item was being unused"
}
]
}
}
]
}
# Change Log - @good-fences/api
This log was last generated on Thu, 09 Mar 2023 18:10:37 GMT and should not be manually modified.
This log was last generated on Fri, 29 Sep 2023 22:45:54 GMT and should not be manually modified.
<!-- Start content -->
## 0.1.5
## 0.4.0
Thu, 09 Mar 2023 18:10:37 GMT
Fri, 29 Sep 2023 22:45:54 GMT
### Patches
### Minor changes
- Removed changefiles, added registry with token to beachbal config file (edgar21_9@hotmail.com)
- Upgraded swc (edgar21_9@hotmail.com)
## 0.3.0
Wed, 06 Sep 2023 18:43:57 GMT
### Minor changes
- Added comments to config (edgar21_9@hotmail.com)
## 0.2.0
Fri, 01 Sep 2023 15:09:07 GMT
### Minor changes
- Changed validations done to check if item was being unused (edgar21_9@hotmail.com)

@@ -6,2 +6,10 @@ /* tslint:disable */

export interface FindUnusedItemsConfig {
pathsToRead: Array<string>
tsConfigPath: string
skippedDirs: Array<string>
skippedItems: Array<string>
filesIgnoredImports: Array<string>
filesIgnoredExports: Array<string>
}
export const enum ExternalFences {

@@ -24,2 +32,11 @@ Include = 0,

}
/**
* Members of the node-facing API are kept in
* this separate module so that the remainder of
* the crate can be compiled into a test binary
*
* References to symbols from the node api require
* linking to a real instance of node, which means that
* `cargo test` can't link anything
*/
export function findUnusedItems(pathsToRead: Array<string>, tsConfigPath: string, skippedDirs: Array<string>, skippedItems: Array<string>): Array<string>

@@ -26,0 +43,0 @@ export class GoodFencesResult {

@@ -0,1 +1,7 @@

/* tslint:disable */
/* eslint-disable */
/* prettier-ignore */
/* auto-generated by NAPI-RS */
const { existsSync, readFileSync } = require('fs')

@@ -14,3 +20,4 @@ const { join } = require('path')

try {
return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
const lddPath = require('child_process').execSync('which ldd').toString().trim()
return readFileSync(lddPath, 'utf8').includes('musl')
} catch (e) {

@@ -105,2 +112,11 @@ return true

case 'darwin':
localFileExisted = existsSync(join(__dirname, '@good-fences.darwin-universal.node'))
try {
if (localFileExisted) {
nativeBinding = require('./@good-fences.darwin-universal.node')
} else {
nativeBinding = require('@good-fences/api-darwin-universal')
}
break
} catch {}
switch (arch) {

@@ -107,0 +123,0 @@ case 'x64':

18

package.json
{
"name": "@good-fences/api",
"version": "0.1.5",
"version": "0.4.0",
"main": "index.js",

@@ -15,9 +15,5 @@ "types": "index.d.ts",

"bin": {
"good-fences": "./good-fences.js"
"good-fences": "./good-fences.js",
"unused": "./unused.js"
},
"os": [
"darwin",
"win32",
"linux"
],
"license": "MIT",

@@ -27,3 +23,3 @@ "devDependencies": {

"ava": "^4.3.0",
"beachball": "^2.31.11"
"beachball": "^2.36.0"
},

@@ -48,6 +44,6 @@ "engines": {

"optionalDependencies": {
"@good-fences/api-win32-x64-msvc": "0.1.5",
"@good-fences/api-darwin-x64": "0.1.5",
"@good-fences/api-linux-x64-gnu": "0.1.5"
"@good-fences/api-win32-x64-msvc": "0.4.0",
"@good-fences/api-darwin-x64": "0.4.0",
"@good-fences/api-linux-x64-gnu": "0.4.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 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 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 not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet