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

@liferay/npm-bundler

Package Overview
Dependencies
Maintainers
13
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liferay/npm-bundler - npm Package Compare versions

Comparing version

to
3.0.1-0

lib/adapt/angular-cli/templates/adapt-rt.js.ejs

24

CHANGELOG.md

@@ -0,1 +1,25 @@

## [npm-bundler/v3.0.1-pre.0](https://github.com/liferay/liferay-frontend-projects/tree/npm-bundler/v3.0.1-pre.0) (2020-10-14)
[Full changelog](https://github.com/liferay/liferay-frontend-projects/compare/npm-bundler/v3.0.0-alpha.5...npm-bundler/v3.0.1-pre.0)
### :wrench: Bug fixes
- fix(js-toolkit): fix various integration problems with DXP ([\#156](https://github.com/liferay/liferay-frontend-projects/pull/156))
### :book: Documentation
- docs(js-tookit): update CHANGELOG files for first named scope releases ([\#155](https://github.com/liferay/liferay-frontend-projects/pull/155))
### :house: Chores
- chore(js-toolkit): update dependencies on js-toolkit-core ([\#157](https://github.com/liferay/liferay-frontend-projects/pull/157))
## [npm-bundler/v3.0.0-alpha.5](https://github.com/liferay/liferay-frontend-projects/tree/npm-bundler/v3.0.0-alpha.5) (2020-10-14)
[Full changelog](https://github.com/liferay/liferay-frontend-projects/compare/liferay-npm-bundler/v3.0.0-alpha.5...npm-bundler/v3.0.0-alpha.5)
### :house: Chores
- chore(js-toolkit): move liferay-npm-bundler (v3.x) to @liferay/npm-bundler ([\#154](https://github.com/liferay/liferay-frontend-projects/pull/154))
## [liferay-npm-bundler/v3.0.0-alpha.5](https://github.com/liferay/liferay-js-toolkit/tree/liferay-npm-bundler/v3.0.0-alpha.5) (2020-09-30)

@@ -2,0 +26,0 @@

2

lib/bundle/configure.js

@@ -51,3 +51,3 @@ "use strict";

}
entry[id] = `./${generatedFile.asPosix}`;
entry[id] = generatedFile.asPosix;
log.debug(`Generated entry point with id ${id} for ${moduleName}`);

@@ -54,0 +54,0 @@ return entry;

@@ -16,6 +16,6 @@ "use strict";

const { workDir } = exports.project;
exports.bundlerGeneratedDir = workDir.join('bundler', 'generated');
exports.bundlerWebpackDir = workDir.join('bundler', 'webpack');
exports.bundlerGeneratedDir = workDir.join('generated');
exports.bundlerWebpackDir = workDir.join('webpack');
fs_extra_1.default.ensureDirSync(exports.project.outputDir.asNative);
fs_extra_1.default.ensureDirSync(exports.bundlerGeneratedDir.asNative);
fs_extra_1.default.ensureDirSync(exports.bundlerWebpackDir.asNative);

@@ -7,3 +7,3 @@ {

"dependencies": {
"@liferay/js-toolkit-core": "3.0.0-alpha.2",
"@liferay/js-toolkit-core": "3.0.1-pre.0",
"acorn": "^6.2.1",

@@ -39,5 +39,6 @@ "cross-spawn": "^7.0.0",

"postversion": "npx liferay-js-publish",
"prepublishOnly": "yarn build",
"preversion": "yarn ci"
},
"version": "3.0.0-alpha.5"
"version": "3.0.1-0"
}

@@ -41,3 +41,3 @@ /**

entry[id] = `./${generatedFile.asPosix}`;
entry[id] = generatedFile.asPosix;

@@ -44,0 +44,0 @@ log.debug(`Generated entry point with id ${id} for ${moduleName}`);

@@ -15,4 +15,4 @@ /**

export const bundlerGeneratedDir = workDir.join('bundler', 'generated');
export const bundlerWebpackDir = workDir.join('bundler', 'webpack');
export const bundlerGeneratedDir = workDir.join('generated');
export const bundlerWebpackDir = workDir.join('webpack');

@@ -19,0 +19,0 @@ fs.ensureDirSync(project.outputDir.asNative);