@itwin/backend-webpack-tools 4.0.0-dev.90 → 4.0.0-dev.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +4 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/backend-webpack-tools",
3
- "version": "4.0.0-dev.90",
3
+ "version": "4.0.0-dev.92",
4
4
  "description": "Configuration and scripts for iTwin.js agents and backends.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,7 +16,6 @@
16
16
  "backend-webpack-tools": "./bin/backend-webpack-tools.js"
17
17
  },
18
18
  "dependencies": {
19
- "@itwin/core-webpack-tools": "4.0.0-dev.90",
20
19
  "case-sensitive-paths-webpack-plugin": "^2.1.2",
21
20
  "chalk": "^3.0.0",
22
21
  "concurrently": "^3.6.1",
@@ -25,7 +24,8 @@
25
24
  "nodemon": "^2.0.4",
26
25
  "webpack": "^5.76.0",
27
26
  "yargonaut": "^1.1.2",
28
- "yargs": "^17.4.0"
27
+ "yargs": "^17.4.0",
28
+ "@itwin/core-webpack-tools": "4.0.0-dev.92"
29
29
  },
30
30
  "devDependencies": {
31
31
  "rimraf": "^3.0.2"
@@ -37,6 +37,5 @@
37
37
  "lint": "",
38
38
  "test": "",
39
39
  "cover": ""
40
- },
41
- "readme": "# backend-webpack-tools\r\n\r\nCopyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.\r\n\r\nThe __backend-webpack-tools__ package includes configuration and scripts for bundling iTwin.js service backends and agents.\r\n\r\n## Available Scripts\r\n\r\n### __backend-webpack-tools start__\r\n\r\nRuns webpack in watch mode, and optionally starts the backend in either electron or node.\r\n\r\n#### Required options\r\n\r\n| Name | Alias | Description | Example |\r\n| - | - | - | - |\r\n| `--source` | `-s` | The main entry point for webpack | `./lib/main.js` |\r\n| `--outDir` | `-o` | The directory where bundle should be emitted | `./dist/` |\r\n\r\n### __backend-webpack-tools build__\r\n\r\nBuilds an optimized \"production\" bundle.\r\n\r\n#### Required options\r\n\r\n| Name | Alias | Description | Example |\r\n| - | - | - | - |\r\n| `--source` | `-s` | The main entry point for webpack | `./lib/main.js` |\r\n| `--outDir` | `-o` | The directory where bundle should be emitted | `./dist/` |"
40
+ }
42
41
  }