assemblyscript
Advanced tools
Comparing version 0.8.0-nightly.20191110 to 0.8.0-nightly.20191114
@@ -20,6 +20,7 @@ "use strict"; | ||
const path = require("path"); | ||
const utf8 = require("@protobufjs/utf8"); | ||
const utf8 = require("./util/utf8"); | ||
const colorsUtil = require("./util/colors"); | ||
const optionsUtil = require("./util/options"); | ||
const mkdirp = require("./util/mkdirp"); | ||
const find = require("./util/find"); | ||
const EOL = process.platform === "win32" ? "\r\n" : "\n"; | ||
@@ -87,5 +88,5 @@ const SEP = process.platform === "win32" ? "\\" : "/"; | ||
const libDir = path.join(__dirname, "..", "std", "assembly"); | ||
const libFiles = require("glob").sync("**/!(*.d).ts", { cwd: libDir }); | ||
const bundled = {}; | ||
libFiles.forEach(file => bundled[file.replace(/\.ts$/, "")] = fs.readFileSync(path.join(libDir, file), "utf8" )); | ||
find.files(libDir, find.TS_EXCEPT_DTS) | ||
.forEach(file => bundled[file.replace(/\.ts$/, "")] = fs.readFileSync(path.join(libDir, file), "utf8" )); | ||
return bundled; | ||
@@ -92,0 +93,0 @@ })(); |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "0.8.0-nightly.20191110", | ||
"version": "0.8.0-nightly.20191114", | ||
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>", | ||
@@ -13,0 +13,0 @@ "license": "Apache-2.0", |
@@ -11,4 +11,19 @@ { | ||
], | ||
"version": "0.8.0-nightly.20191110", | ||
"version": "0.8.0-nightly.20191114", | ||
"author": "Daniel Wirtz <dcode+assemblyscript@dcode.io>", | ||
"contributors": [ | ||
"Max Graey <maxgraey@gmail.com>", | ||
"Igor Sbitnev <PinkaminaDianePie@gmail.com>", | ||
"Norton Wang <me@nortonwang.com>", | ||
"Alan Pierce <alangpierce@gmail.com>", | ||
"Palmer <pengliao@live.cn>", | ||
"Linus Unnebäck <linus@folkdatorn.se>", | ||
"Joshua Tenner <tenner.joshua@gmail.com>", | ||
"Nidin Vinayakan <01@01alchemist.com>", | ||
"Aaron Turner <aaron@aaronthedev.com>", | ||
"Willem Wyndham <willem@cs.umd.edu>", | ||
"Bowen Wang <bowen@nearprotocol.com>", | ||
"Emil Laine <laine.emil@gmail.com>", | ||
"Stephen Paul Weber <stephen.weber@shopify.com>" | ||
], | ||
"license": "Apache-2.0", | ||
@@ -24,7 +39,4 @@ "homepage": "https://assemblyscript.org", | ||
"dependencies": { | ||
"@protobufjs/utf8": "^1.1.0", | ||
"binaryen": "89.0.0-nightly.20191012", | ||
"glob": "^7.1.5", | ||
"long": "^4.0.0", | ||
"source-map-support": "^0.5.16" | ||
"binaryen": "89.0.0-nightly.20191113", | ||
"long": "^4.0.0" | ||
}, | ||
@@ -31,0 +43,0 @@ "main": "index.js", |
@@ -1094,10 +1094,14 @@ // @ts-ignore: decorator | ||
@builtin | ||
export declare function min<T>(a: v128, b: v128): v128; // f32, f64 only | ||
export declare function min<T>(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max<T>(a: v128, b: v128): v128; // f32, f64 only | ||
export declare function max<T>(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function dot<T>(a: v128, b: v128): v128; // i16 only | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function abs<T>(a: v128): v128; // f32, f64 only | ||
@@ -1201,2 +1205,18 @@ | ||
@builtin | ||
export declare function min_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function min_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function neg(a: v128): v128; | ||
@@ -1325,2 +1345,18 @@ | ||
@builtin | ||
export declare function min_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function min_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function neg(a: v128): v128; | ||
@@ -1469,2 +1505,22 @@ | ||
@builtin | ||
export declare function min_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function min_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function max_u(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function dot_i16x8_s(a: v128, b: v128): v128; | ||
// @ts-ignore: decorator | ||
@builtin | ||
export declare function neg(a: v128): v128; | ||
@@ -1471,0 +1527,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
4512117
2
105
31302
37
+ Addedbinaryen@89.0.0-nightly.20191113(transitive)
- Removed@protobufjs/utf8@^1.1.0
- Removedglob@^7.1.5
- Removedsource-map-support@^0.5.16
- Removed@protobufjs/utf8@1.1.0(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbinaryen@89.0.0-nightly.20191012(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedbuffer-from@1.1.2(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedglob@7.2.3(transitive)
- Removedinflight@1.0.6(transitive)
- Removedinherits@2.0.4(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedonce@1.4.0(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedsource-map@0.6.1(transitive)
- Removedsource-map-support@0.5.21(transitive)
- Removedwrappy@1.0.2(transitive)