
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
broccoli-typescript-compiler
Advanced tools
A Broccoli plugin which compiles TypeScript files.
$ npm install broccoli-typescript-compiler --save-dev
var typescript = require("broccoli-typescript-compiler").default;
var cjsTree = typescript(inputTree, {
tsconfig: {
compilerOptions: {
module: "commonjs",
target: "es5",
moduleResolution: "node",
newLine: "LF",
rootDir: "src",
outDir: "dist",
sourceMap: true,
declaration: true,
},
files: ["src/index.ts", "src/tests/**"],
},
throwOnError: false,
annotation: "compile program",
});
tsconfig:
tsconfig
relative to where the BroccoliTypeScriptCompiler is invoked.annotation:
An optional string, which when provide should be a descriptive annotation. Useful for debugging, to tell multiple instances of the same plugin apart.
throwOnError
An optional boolean, defaulting to false
. If set to true
, will cause the build to break on errors.
note: if process.env.NODE_ENV === 'production'
is true, throwOnError
will default to true
.
This outputs only the emitted files from the compiled program.
const { TypescriptCompiler } = require("broccoli-typescript-compiler");
let compiled = new TypescriptCompiler(input, options);
This outputs only the emitted files from the compiled program.
const { default: typescript } = require("broccoli-typescript-compiler");
let compiled = typescript(src, options);
This selects only ts files from the input to compile and merges emitted files with the non ts files in the input.
const { filterTypescript } = require("broccoli-typescript-compiler");
let output = filterTypescript(input, options);
typescript
git submodule update --init
typescript
in package.json
yarn run generate-tsconfig-interface
vendor/typescript
. cd vendor/typescript && git fetch --tags && git checkout v[new-version-of-typescript]
yarn test
. There may be some changes needed to the tests to accomidate changes in TypeScript.FAQs
A Broccoli plugin which compiles TypeScript files.
The npm package broccoli-typescript-compiler receives a total of 2,640 weekly downloads. As such, broccoli-typescript-compiler popularity was classified as popular.
We found that broccoli-typescript-compiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.