Skip to content
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
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# Ignite UI Help samples

## Running the samples locally

1. Install all dependencies:

```
npm install
```

2. Build the samples specifying what version to build and the source folder for it as arguments:


```
npm run build -- --version 17.1 --ignite-ui http://localhost/ig_ui17.1
```

3. The built samples will be located under the ./dist folder.
25 changes: 14 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
{
"name": "help-samples-src",
"version": "0.0.1",
"description": "",
"devDependencies": {
"cheerio": "^0.22.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.8",
"through2": "^2.0.3"
},
"description": "help samples",
"license": "MIT",
"homepage": "https://github.com/IgniteUI/help-samples-src#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/IgniteUI/help-samples-src.git"
},
"bugs": {
"url": "https://github.com/IgniteUI/help-samples-src/issues"
},
"keywords": [
"Ignite",
"UI",
"samples",
"help",
"docs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/IgniteUI/help-samples-src/issues"
"devDependencies": {
"cheerio": "^0.22.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.8",
"through2": "^2.0.3"
},
"homepage": "https://github.com/IgniteUI/help-samples-src#readme"
"scripts": {
"build": "gulp build-samples"
}
}