Skip to content

Commit

Permalink
Merge pull request #2 from me-marcel/fix/noticket-package-name-change
Browse files Browse the repository at this point in the history
fix: package name change
  • Loading branch information
me-marcel committed Jun 30, 2022
2 parents 281b021 + 487e1db commit 9892486
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ With NPM:

Github:

`npm i https://github.com/me-marcel/nx-loopback-next.git --save`
`npm i https://github.com/me-marcel/nx-loopback-new.git --save`

And then you must build the contents in your node_modules/nx-loopback-new with `yarn build`.

Expand Down
4 changes: 2 additions & 2 deletions collection.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nx-loopback-next",
"name": "nx-loopback-new",
"version": "0.0.1",
"extends": [
"@nrwl/workspace"
Expand All @@ -8,7 +8,7 @@
"init": {
"factory": "./src/schematics/init/init",
"schema": "./src/schematics/init/schema.json",
"description": "Initialize the nx-loopback-next plugin",
"description": "Initialize the nx-loopback-new plugin",
"aliases": [
"ng-add"
],
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "nx-loopback-new",
"version": "0.0.5",
"version": "0.0.6",
"description": "Loopback 4 builder and schematics for Nx monorepos.",
"main": "dist/index.js",
"repository": "https://github.com/me-marcel/nx-loopback-next.git",
"repository": "https://github.com/me-marcel/nx-loopback-new.git",
"author": "Marcel Menk <marcel.menk@ipvx.io>",
"contributors": [
"Martin Raymond <codephobia@hotmail.com>"
Expand Down
4 changes: 2 additions & 2 deletions src/schematics/application/application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function addAppFiles(options: NormalizedSchema): Rule {

function getBuildConfig(project: any, options: NormalizedSchema) {
return {
builder: 'nx-loopback-next:build',
builder: 'nx-loopback-new:build',
options: {
main: join(project.sourceRoot, 'index.js'),
appPath: join(options.appProjectRoot),
Expand All @@ -87,7 +87,7 @@ function getBuildConfig(project: any, options: NormalizedSchema) {

function getServeConfig(options: NormalizedSchema) {
return {
builder: 'nx-loopback-next:execute',
builder: 'nx-loopback-new:execute',
options: {
buildTarget: `${options.name}:build`,
appPath: join(options.appProjectRoot),
Expand Down

0 comments on commit 9892486

Please sign in to comment.