Skip to content

Commit 5090bef

Browse files
committed
chore: setup
1 parent 5e0db94 commit 5090bef

File tree

141 files changed

+4258
-270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+4258
-270
lines changed

.prettierrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"singleQuote": true
2+
"singleQuote": true,
3+
"printWidth": 300
34
}

README.md

-90
This file was deleted.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/nx/README.md

e2e/nx-e2e/tests/nx.test.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
describe('nx e2e', () => {
99
it('should create nx', async (done) => {
1010
const plugin = uniq('nx');
11-
ensureNxProject('@nx-plugin/nx', 'dist/packages/nx');
12-
await runNxCommandAsync(`generate @nx-plugin/nx:nx ${plugin}`);
11+
ensureNxProject('@nativescript/nx', 'dist/packages/nx');
12+
await runNxCommandAsync(`generate @nativescript/nx:nx ${plugin}`);
1313

1414
const result = await runNxCommandAsync(`build ${plugin}`);
1515
expect(result.stdout).toContain('Builder ran');
@@ -20,9 +20,9 @@ describe('nx e2e', () => {
2020
describe('--directory', () => {
2121
it('should create src in the specified directory', async (done) => {
2222
const plugin = uniq('nx');
23-
ensureNxProject('@nx-plugin/nx', 'dist/packages/nx');
23+
ensureNxProject('@nativescript/nx', 'dist/packages/nx');
2424
await runNxCommandAsync(
25-
`generate @nx-plugin/nx:nx ${plugin} --directory subdir`
25+
`generate @nativescript/nx:nx ${plugin} --directory subdir`
2626
);
2727
expect(() =>
2828
checkFilesExist(`libs/subdir/${plugin}/src/index.ts`)
@@ -34,9 +34,9 @@ describe('nx e2e', () => {
3434
describe('--tags', () => {
3535
it('should add tags to nx.json', async (done) => {
3636
const plugin = uniq('nx');
37-
ensureNxProject('@nx-plugin/nx', 'dist/packages/nx');
37+
ensureNxProject('@nativescript/nx', 'dist/packages/nx');
3838
await runNxCommandAsync(
39-
`generate @nx-plugin/nx:nx ${plugin} --tags e2etag,e2ePackage`
39+
`generate @nativescript/nx:nx ${plugin} --tags e2etag,e2ePackage`
4040
);
4141
const nxJson = readJson('nx.json');
4242
expect(nxJson.projects[plugin].tags).toEqual(['e2etag', 'e2ePackage']);

nx.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"npmScope": "nx-plugin",
2+
"npmScope": "nativescript",
33
"affected": {
44
"defaultBase": "master"
55
},

0 commit comments

Comments
 (0)