Comparing version 1.0.7 to 1.0.8
@@ -11,3 +11,3 @@ { | ||
"description": "libxml bindings for v8 javascript engine", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"repository": { | ||
@@ -31,5 +31,6 @@ "type": "git", | ||
"install": "node-pre-gyp install --fallback-to-build --loglevel http -j max", | ||
"package": "node-pre-gyp package", | ||
"build": "node-gyp rebuild -j max", | ||
"build-debug": "node-gyp rebuild -j max --debug", | ||
"swig": "npm run init && bash scripts/swig.sh && node scripts/swigfix.js", | ||
"swig": "bash scripts/swig.sh && node scripts/swigfix.js", | ||
"tsgenerate": "node scripts/swig2ts.js", | ||
@@ -36,0 +37,0 @@ "tsgenerate-debug": "lldb -- `which node` scripts/swig2ts.js", |
# libxmljs | ||
[![npm version](https://badge.fury.io/js/libxmljs.svg)](https://badge.fury.io/js/libxmljs) | ||
[![Downloads monthly](https://img.shields.io/npm/dm/libxmljs.svg)](https://npmjs.org/package/libxmljs) | ||
[![Downloads total](https://img.shields.io/npm/dt/libxmljs.svg)](https://npmjs.org/package/libxmljs) | ||
[![Test & Upload](https://github.com/libxmljs/libxmljs/actions/workflows/test-deploy.yml/badge.svg)](https://github.com/libxmljs/libxmljs/actions/workflows/test-deploy.yml) | ||
@@ -9,3 +11,3 @@ | ||
NodeJS bindings for [libxml2](https://en.wikipedia.org/wiki/Libxml2) written in | ||
[Typescript](https://www.typescriptlang.org/) | ||
Typescript | ||
@@ -12,0 +14,0 @@ ## Documentation |
@@ -6,4 +6,5 @@ const fs = require("fs"); | ||
if ( | ||
!fs.existsSync(packageRoot + "vendor/libxml2/include/libxml/parserInternals.h") || | ||
!fs.existsSync(packageRoot + "vendor/libxml2/globals.c") | ||
fs.existsSync(packageRoot + ".git") && | ||
(!fs.existsSync(packageRoot + "vendor/libxml2/include/libxml/parserInternals.h") || | ||
!fs.existsSync(packageRoot + "vendor/libxml2/globals.c")) | ||
) { | ||
@@ -10,0 +11,0 @@ console.log("Initializing submodules"); |
@@ -14,4 +14,4 @@ { | ||
}, | ||
"include": ["index.ts", "src", "test"], | ||
"include": ["index.ts", "test"], | ||
"exclude": ["node_modules"] | ||
} |
Sorry, the diff of this file is not supported yet
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
17656919
33875
83