Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JavaScript cleanup #1717

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions js/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
allTests.py
assets
bin
bower.json
bower_components
gulp
gulpfile.js
index.html
Expand Down
7 changes: 3 additions & 4 deletions js/BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,9 @@ supported platforms.

To build Ice for JavaScript you must have the following:

- The `slice2js` compiler from Ice for C++. If you have not built Ice for C++
in this source distribution, refer to the
[C++ build instructions](../cpp/README.md).
- Node.js 4.6 or later
- The `slice2js` compiler from Ice for C++. If you have not built Ice for C++ in this source distribution, refer to the
[C++ build instructions](../cpp/BUILDING.md).
- Node.js 20 or later

## Building the JavaScript libraries and NodeJS packages

Expand Down
12 changes: 0 additions & 12 deletions js/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,17 +286,6 @@ gulp.task("test:common:generate",
gulp.dest("test/Common")], cb);
});

gulp.task("test:common:babel",
cb =>
{
pump([gulp.src(["test/Common/Controller.js",
"test/Common/ControllerI.js",
"test/Common/ControllerWorker.js",
"test/Common/TestHelper.js",
"test/Common/run.js"]),
babel({compact: false})], cb);
});

gulp.task("test:common:clean",
cb =>
{
Expand Down Expand Up @@ -346,7 +335,6 @@ gulp.task("test:import:clean",
});

const testTask = name => name.replace(/\//g, "_");
const testBabelTask = name => testTask(name) + ":babel";
const testCleanTask = name => testTask(name) + ":clean";
const testBuildTask = name => testTask(name) + ":build";

Expand Down
13 changes: 0 additions & 13 deletions js/src/es5/index.js

This file was deleted.