Skip to content

Commit

Permalink
chore(release): publish 0.0.0-e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPieper committed Jun 25, 2024
1 parent 61a7e39 commit 26071d3
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 9 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## 0.0.0-e2e (2024-06-24)

### 🚀 Features

- **sveltekit:** upgrade versions and allow CLI overrides ([f867fb34](https://github.com/nxext/nx-extensions/commit/f867fb34))

### 🩹 Fixes

- **stencil:** allow ArrayLiteralExpression in addCodeIntoArray ([f24475d5](https://github.com/nxext/nx-extensions/commit/f24475d5))
- **stencil:** resolve `validateConfig` error from @stencil/core@14.17.0 onward ([f5b87252](https://github.com/nxext/nx-extensions/commit/f5b87252))
- **stencil:** remove gitignore addage ([b6e8e8be](https://github.com/nxext/nx-extensions/commit/b6e8e8be))

### ❤️ Thank You

- Dominik Pieper @DominikPieper
- kristianmandrup @kristianmandrup
- Maarten Van Hoof @mrtnvh
- Sharief Orie
4 changes: 2 additions & 2 deletions e2e/solid-e2e/tests/solid.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ describe('solid e2e', () => {

afterAll(() => {
// Cleanup the test project
rmSync(projectDirectory, {
/*rmSync(projectDirectory, {
recursive: true,
force: true,
});
});*/
});

describe('solid app', () => {
Expand Down
17 changes: 16 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
}
},
"targetDefaults": {
"nx-release-publish": {
"options": {
"packageRoot": "dist/packages/{projectName}"
}
},
"build": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
Expand Down Expand Up @@ -122,6 +127,16 @@
"parallel": 1,
"defaultBase": "main",
"release": {
"projects": ["*", "!docs", "!stencil", "!*-e2e", "!e2e-*"]
"projects": ["*", "!docs", "!stencil", "!common", "!*-e2e", "!e2e-*"],
"releaseTagPattern": "release/{version}",
"git": {
"commitMessage": "chore(release): {version}"
},
"version": {
"generatorOptions": {
"packageRoot": "dist/packages/{projectName}",
"currentVersionResolver": "git-tag"
}
}
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"semver": "^7.6.2",
"svelte": "^4.2.12",
"svelte-preprocess": "^5.1.3",
"svelte": "^4.2.18",
"svelte-preprocess": "^6.0.1",
"tcp-port-used": "^1.0.2",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
Expand Down
15 changes: 14 additions & 1 deletion packages/common/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,18 @@
}
}
},
"tags": []
"tags": [],
"release": {
"version": {
"generatorOptions": {
"packageRoot": "dist/{projectRoot}",
"currentVersionResolver": "git-tag"
}
}
},
"nx-release-publish": {
"options": {
"packageRoot": "dist/{projectRoot}"
}
}
}
2 changes: 2 additions & 0 deletions packages/solid/src/generators/library/lib/add-vite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export async function addVite(host: Tree, options: NormalizedSchema) {
uiFramework: 'none',
project: options.name,
newProject: true,
includeLib: true,
includeVitest: options.unitTestRunner === 'vitest',
inSourceTests: false,
skipFormat: true,
});
}
2 changes: 1 addition & 1 deletion packages/solid/src/generators/library/library.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export async function libraryGeneratorInternal(
host,
{
project: options.name,
includeLib: false,
includeLib: true,
includeVitest: options.unitTestRunner === 'vitest',
inSourceTests: false,
rollupOptionsExternal: [],
Expand Down
4 changes: 2 additions & 2 deletions packages/svelte/src/generators/utils/versions.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const svelteVersion = '^4.2.12';
export const svelteVersion = '^4.2.18';
export const svelteJesterVersion = '^2.3.2';
export const svelteCheckVersion = '^2.10.2';
export const svelteLoaderVersion = '^3.1.9';
export const sveltePreprocessVersion = '^5.1.3';
export const sveltePreprocessVersion = '^6.0.1';
export const eslintPluginSvelteVersion = '^4.0.0';
export const tsconfigSvelteVersion = '^4.0.1';
export const testingLibrarySvelteVersion = '^3.2.2';
Expand Down

0 comments on commit 26071d3

Please sign in to comment.