diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 080e390..4ac6fc9 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -53,18 +53,9 @@ jobs: - name: Update version.json from git describe run: pnpm run version - - name: Set the version in package.json - env: - VERSION: ${{ steps.version.outputs.version }} - run: sed "s/0.0.0/${VERSION}/" -i package.json - - name: Build package (transpile ts => js) run: ng build - - name: Publish - if: fromJSON(steps.builder.outputs.run) - run: pnpm publish - - name: Build container if: fromJSON(steps.builder.outputs.run) uses: actions/buildah-build@v1 diff --git a/.gitignore b/.gitignore index ee6bec4..105c00f 100644 --- a/.gitignore +++ b/.gitignore @@ -44,5 +44,3 @@ testem.log # System Files .DS_Store Thumbs.db - -.npmrc diff --git a/package.json b/package.json index 6b0a851..43ef986 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "treetrail-frontend", - "version": "0.0.0", + "name": "treetrail", + "version": "0.0.3", "scripts": { "ng": "ng", "start": "ng serve --proxy-config proxy.conf.json --port 4201 --serve-path /treetrail", @@ -10,6 +10,7 @@ "openapi-ts": "openapi-ts", "version": "echo \"{\\\"version\\\":\\\"$(git describe --tags --dirty --always)\\\"}\" > src/version.json" }, + "private": true, "dependencies": { "@angular/animations": "^18.2.6", "@angular/cdk": "^18.2.6", @@ -61,8 +62,5 @@ "karma-jasmine-html-reporter": "^2.1.0", "typescript": "~5.4.5" }, - "packageManager": "pnpm@9.12.2", - "publishConfig": { - "registry": "http://code.philo.ydns.eu/api/packages/philorg/npm/" - } + "packageManager": "pnpm@9.12.2" }