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 demo cleanup #219

Merged
merged 2 commits into from
Jun 21, 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
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,14 @@ jobs:
CPP_PLATFORM: x64
CPP_CONFIGURATION: Release
run: ./gradlew build

- name: Build JavaScript Demos on ${{ matrix.os }}
timeout-minutes: 20
working-directory: ice-demos/js
env:
# For Ice Builder for Gulp
CPP_PLATFORM: x64
CPP_CONFIGURATION: Release
run: |
npm install
npx gulp build
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ The sample programs are grouped by Slice language mapping:
- [Python](./python)
- [Ruby](./ruby)
- [Swift](./swift)
- [TypeScript](./typescript)

For example, the [cpp](./cpp) folder contains all the sample programs written
in C++ that demonstrate the Slice to C++ language mapping.
Expand Down
19 changes: 0 additions & 19 deletions js/.babelrc

This file was deleted.

4 changes: 4 additions & 0 deletions js/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[*]
indent_style = space
indent_size = 4
max_line_length = 120
3 changes: 0 additions & 3 deletions js/.eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
assets/jquery.spin.js
bin/HttpServer.js
es5
Client.min.js
lib
291 changes: 0 additions & 291 deletions js/.eslintrc.js

This file was deleted.

4 changes: 4 additions & 0 deletions js/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.d.ts
Glacier2/**/*.js
Ice/**/*.js
Manual/**/*.js
5 changes: 5 additions & 0 deletions js/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

**/*.ice
**/*.md
assets/*
package-lock.json
4 changes: 4 additions & 0 deletions js/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
overrides:
- files: [".eslintrc.js", "*.json"]
options:
quoteProps: preserve
11 changes: 0 additions & 11 deletions js/Chat/.eslintrc.js

This file was deleted.

Loading
Loading