Skip to content

Commit f8f1413

Browse files
build before publish (#82)
* fix build and publish * change diffloading flag
1 parent b78cc5a commit f8f1413

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/npm-publish.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
registry-url: https://registry.npmjs.org/
3232
scope: '@ngx-builders'
3333
- run: npm i
34+
- run: npm run build
3435
- run: npm publish
3536
env:
3637
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Now whenever you want to analyze your angular project just run a command `ng run
4343

4444
#### --diffLoading <a name="diffLoading"></a>
4545
- **optional**
46-
- Default: `true` (boolean)
46+
- Default: `false` (boolean)
4747
- Example:
48-
- `ng run [YOUR_PROJECT_NAME]:analyze --diffLoading=false`A new Angular 10 project will have differential loading set to false, but if you upgrade from previous version and have differential loading enabled it will remain the same. This flag is for backward compatibilily. You can skip this option if differential loading is enabled.
48+
- `ng run [YOUR_PROJECT_NAME]:analyze --diffLoading=true` – You can change to true if differential loading is enabled.
4949

5050
# License
5151
[MIT](https://github.com/ngx-builders/source-map-analyzer/blob/master/LICENSE)

analyze/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"diffLoading": {
1212
"type":"boolean",
13-
"default": true
13+
"default": false
1414
}
1515
}
1616
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-builders/analyze",
3-
"version": "2.3.2",
3+
"version": "2.3.3",
44
"description": "",
55
"main": "index.js",
66
"builders": "./builders.json",

0 commit comments

Comments
 (0)