Skip to content

Commit

Permalink
Merge pull request #168 from WildCodeSchool/dev
Browse files Browse the repository at this point in the history
fixed package templates
  • Loading branch information
rocambille authored Oct 22, 2024
2 parents 831da05 + 83a1fcd commit de0f8a6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[Open an issue](https://github.com/WildCodeSchool/create-js-monorepo/issues) if you have any request/feedback :)

## [7.1.6] - 2024-10-22

### Fixed

- Fixed package templates.

## [7.1.5] - 2024-10-19

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@this-is-to-learn/create-js-monorepo",
"version": "7.1.5",
"version": "7.1.6",
"type": "module",
"description": "Our pedagogical framework for the React-Express-MySQL cursus in Wild Code School",
"homepage": "https://github.com/wildcodeschool/create-js-monorepo#readme",
Expand Down
10 changes: 6 additions & 4 deletions template/package.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@
"name": "{{name}}",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/WildCodeSchool/{{name}}#readme",
"homepage": "https://github.com/{{org}}/{{name}}#readme",
"bugs": {
"url": "https://github.com/WildCodeSchool/{{name}}/issues"
"url": "https://github.com/{{org}}/{{name}}/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WildCodeSchool/{{name}}.git"
"url": "git+https://github.com/{{org}}/{{name}}.git"
},
"workspaces": ["client", "server"],
"scripts": {
"build": "npm run build --workspaces --if-present",
"check": "biome check --error-on-warnings --no-errors-on-unmatched --staged .",
"clean": "node ./bin/clean",
"db:migrate": "npm run db:migrate --workspace=server",
Expand All @@ -20,10 +21,11 @@
"dev:client": "npm run dev --workspace=client",
"dev:server": "npm run dev --workspace=server",
"prepare": "husky || true",
"start": "npm run start --workspace=server",
"test": "npm run test --workspaces --if-present"
},
"keywords": [],
"author": "WildCodeSchool",
"author": "{{org}}",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.2",
Expand Down

0 comments on commit de0f8a6

Please sign in to comment.