Skip to content

Commit 223a417

Browse files
authored
Merge pull request #27 from IgniteUI/vnext
Push to prod grid react samples
2 parents f53dfea + 4ac140e commit 223a417

File tree

718 files changed

+36296
-1166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

718 files changed

+36296
-1166
lines changed

.appbuilder-state.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/node.js.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ "vnext", "master" ]
99
pull_request:
10-
branches: [ master ]
10+
branches: [ "vnext", "master" ]
1111

1212
jobs:
1313
build:
@@ -20,14 +20,13 @@ jobs:
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
# cache: 'npm' # enable after committing lock file from first install
29-
- run: npm i # replace with 'npm ci' after committing lock file from first install
30-
# - run: npm run lint
31-
- run: npm run build
32-
- run: npm run test
28+
cache: 'npm'
29+
- run: npm ci
30+
- run: npm run lint
31+
- run: npm run build --if-present
3332

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/node_modules
4+
**/node_modules
55
/.pnp
66
.pnp.js
77

@@ -10,6 +10,8 @@
1010

1111
# production
1212
/build
13+
**/dist
14+
**/tsconfig.tsbuildinfo
1315

1416
# misc
1517
.DS_Store
@@ -21,3 +23,5 @@
2123
npm-debug.log*
2224
yarn-debug.log*
2325
yarn-error.log*
26+
27+
**/.vs

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ Run `npm start` to build the application, start a web server and open the applic
1010

1111
Run `npm run build` to build the application into an output directory.
1212

13-
## Running unit tests
14-
15-
Run `npm test` to execute the unit tests via [Vitest](https://vitest.dev/). Runs all `.test.tsx` files under `./src` folder.
1613

1714
## Running code style checks
1815

generationLogs.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

ig-theme.css

Lines changed: 0 additions & 231 deletions
This file was deleted.

index.html

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,12 @@
1010
<meta name="theme-color" content="#000000" />
1111
<title>grid landing pages</title>
1212
<link rel="stylesheet" href="./styles.css">
13+
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
1314
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel='stylesheet'>
14-
<link href='./node_modules/@igniteui/material-icons-extended/styles/sprite.css' rel='stylesheet'>
15-
<link rel='stylesheet' href='./node_modules/igniteui-webcomponents/themes/light/material.css'>
16-
<link rel='stylesheet' href='./node_modules/igniteui-react-grids/grids/themes/light/material.css'>
17-
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:wght@300;400;600;700' rel='stylesheet'>
18-
<link rel='stylesheet' href='./ig-theme.css'>
1915
</head>
20-
<body>
16+
<body class="ig-scrollbar ig-typography">
2117
<noscript>You need to enable JavaScript to run this app.</noscript>
22-
<div id="root"></div>
23-
<!--
24-
This HTML file is a template.
25-
If you open it directly in the browser, you will see an empty page.
26-
27-
You can add webfonts, meta tags, or analytics to this file.
28-
The build step will place the bundled scripts into the <body> tag.
29-
30-
To begin the development, run `npm start` or `yarn start`.
31-
To create a production bundle, use `npm run build` or `yarn build`.
32-
-->
18+
<div id="root"><img class="loading-indicator" src="/loading.svg"/></div>
3319
</body>
3420
<script type="module" src="/src/main.tsx"></script>
3521
</html>

0 commit comments

Comments
 (0)