Skip to content

Commit 23203be

Browse files
author
kdinev
committed
chore(*): cleaning up dependencies
1 parent 5316346 commit 23203be

13 files changed

Lines changed: 196 additions & 444 deletions

File tree

.github/workflows/build-app-crm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
# Steps represent a sequence of tasks that will be executed as part of the job
3535
steps:
3636
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838

3939
- name: Use Node.js ${{ matrix.node-version }}
40-
uses: actions/setup-node@v2
40+
uses: actions/setup-node@v3
4141
with:
4242
node-version: ${{ matrix.node-version }}
4343
cache: 'npm'

.github/workflows/build-app-lob.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
# Steps represent a sequence of tasks that will be executed as part of the job
4040
steps:
4141
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343

4444
- name: Use Node.js ${{ matrix.node-version }}
45-
uses: actions/setup-node@v2
45+
uses: actions/setup-node@v3
4646
with:
4747
node-version: ${{ matrix.node-version }}
4848
cache: 'npm'

gulpfile.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
const gulp = require("gulp");
22
const fs = require("fs");
33
const path = require("path");
4-
const domino = require('domino');
54
const es = require('event-stream');
65
const fsExtra = require("fs-extra");
7-
const tsNode = require('ts-node').register({
8-
transpileOnly: true,
9-
compilerOptions: {
10-
module: "commonjs",
11-
allowJs: true
12-
}
13-
});
146
const { generateLiveEditing } = require('igniteui-live-editing');
157
const argv = require("yargs").argv;
168

@@ -151,7 +143,7 @@ const processApp = (projectPath, dest, directoriesToExclude) => {
151143
directories.push(child);
152144
}
153145
});
154-
146+
155147
const jsonSamplesPath = path.join(__dirname, `${projectPath}/assets/samples`);
156148
const sharedJson = JSON.parse(fs.readFileSync(path.join(jsonSamplesPath, "/shared.json")));
157149
const submoduleAppDest = submodule + `/${dest}/`;

0 commit comments

Comments
 (0)