Skip to content

Commit ec1b814

Browse files
committed
Version 1.6.3
1 parent 20e2595 commit ec1b814

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

docs/assets/yo-running.png

-3.4 KB
Loading

docs/release-notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
- **npm version** - Updates package-solution.json and Teams manifest.json with package.json version
77
- **gulp dev** - for package solution for development
88
- **Jest Testing Framework** - is now optional [#157](https://github.com/pnp/generator-spfx/issues/157)
9+
- **[Docker Documentation](./howtos/dockerimg)**
910

1011
**Bugfix:**
1112

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
!!! note
2525
* package.json: 1.2.3
2626
* `config/package-solution.json` : 1.2.3.0
27-
* `teams/mainfest.json`: 1.2.3.0
27+
* `teams/mainfest.json`: 1.2.3
2828

2929
Besides the current commit will [tagged](https://git-scm.com/book/en/v2/Git-Basics-Tagging) on the git repository.
3030

generators/addons/templates/tools/pre-version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const nextPkgVersion = process.env.npm_package_version;
2121

2222
// make sure next build version match
2323
const nextVersion = nextPkgVersion.indexOf('-') === -1 ?
24-
nextPkgVersion + '.0' : nextPkgVersion.split('-')[0] + '.0';
24+
nextPkgVersion : nextPkgVersion.split('-')[0];
2525

2626
// Update version in SPFx package-solution if exists
2727
if (fs.existsSync(solution)) {
@@ -32,7 +32,7 @@ if (fs.existsSync(solution)) {
3232
const solutionContents = JSON.parse(solutionFileContent);
3333

3434
// set property of version to next version
35-
solutionContents.solution.version = nextVersion;
35+
solutionContents.solution.version = nextVersion + '.0';
3636

3737
// save file
3838
fs.writeFileSync(

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pnp/generator-spfx",
3-
"version": "1.6.3-beta2",
3+
"version": "v1.6.3-beta2",
44
"description": "This Yeoman generator helps organisations to improve their development workflow with the SharePoint Framework. It extends the functionalities of the @microsoft/generator-sharepoint based on best pattern and practices. This generator extends the capabilities of ReactJS, and Knockout projects add support for additional frameworks and include advanced code analysis tools.",
55
"author": {
66
"name": "Office 365 / SharePoint PnP Core Team",
@@ -31,12 +31,15 @@
3131
"Angular Elements",
3232
"SharePointFramework"
3333
],
34-
"maintainers": [{
35-
"name": "Stefan Bauer",
36-
"email": "[email protected]",
37-
"url": "https://www.n8d.at/"
38-
}],
39-
"contributors": [{
34+
"maintainers": [
35+
{
36+
"name": "Stefan Bauer",
37+
"email": "[email protected]",
38+
"url": "https://www.n8d.at/"
39+
}
40+
],
41+
"contributors": [
42+
{
4043
"name": "Vincent Biret",
4144
"email": "[email protected]",
4245
"url": "https://microsofttouch.fr/default/b/vincent/"

0 commit comments

Comments
 (0)