Skip to content

Commit

Permalink
fix: fix path for license header that stayed with lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
alanrodas committed May 6, 2024
1 parent 075f063 commit 0a0662c
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## <small>0.8.5 (2024-05-05)</small>
## <small>0.8.7 (2024-05-06)</small>




## <small>0.8.5 (2024-05-05)</small>

## <small>0.8.4 (2024-05-05)</small>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gobstones/gobstones-scripts",
"version": "0.8.6",
"version": "0.8.7",
"description": "Scripts to abstract away build configuration of Gobstones Project's libraries and modules.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion project-types/CLILibrary/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"commander": "^11.1.0"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.6",
"@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
1 change: 0 additions & 1 deletion project-types/Common/license.config.json

This file was deleted.

2 changes: 1 addition & 1 deletion project-types/Library/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@gobstones/gobstones-core": "^0.4.7"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.6",
"@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
2 changes: 1 addition & 1 deletion project-types/NonCode/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.6",
"@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
2 changes: 1 addition & 1 deletion project-types/ReactLibrary/package-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.8.6",
"@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
2 changes: 1 addition & 1 deletion src/Config/about.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @group Internal: Values
*/
export const version = '0.8.6';
export const version = '0.8.7';

/**
* The tool's test server address.
Expand Down
4 changes: 2 additions & 2 deletions src/Config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ export class Config {
// This file descriptor is used to find
// The LICENSE_HEADER. In principle it should not be
// overridden at all.
gobstonesScriptsLocation: ['common/LICENSE_HEADER'],
gobstonesScriptsLocation: ['Common/LICENSE_HEADER'],
projectLocation: ['LICENSE_HEADER'],
isOverridable: true
}),
Expand All @@ -877,7 +877,7 @@ export class Config {
// This file descriptor is used to find
// The license.config.js. In principle it should not be
// overridden at all.
gobstonesScriptsLocation: ['common/license.config.js'],
gobstonesScriptsLocation: ['Common/license.config.js'],
projectLocation: ['license.config.js'],
isOverridable: true
}
Expand Down

0 comments on commit 0a0662c

Please sign in to comment.