create-nuxt-base 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,9 @@ on:
5
5
  tags:
6
6
  - 'v*'
7
7
 
8
+ env:
9
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
10
+
8
11
  jobs:
9
12
  publish:
10
13
  runs-on: ubuntu-latest
@@ -19,3 +22,12 @@ jobs:
19
22
  with:
20
23
  access: public
21
24
  token: ${{ secrets.NPM_TOKEN }}
25
+ - name: Deploy notification
26
+ if: always()
27
+ uses: adamkdean/simple-slack-notify@master
28
+ with:
29
+ channel: '#deployments'
30
+ status: ${{ job.status }}
31
+ success_text: 'Version (#${{github.ref_name}}) von create-nuxt-base wurde erfolgreich released.'
32
+ failure_text: 'Release (#${{github.ref_name}}) von create-nuxt-base ist fehlgeschlagen.'
33
+ cancelled_text: 'Release (#${{github.ref_name}}) von create-nuxt-base wurde abgebrochen.'
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.7](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.6...v0.1.7) (2023-03-31)
6
+
7
+
8
+ ### Features
9
+
10
+ * Add webhook url secret ([5719919](https://github.com/lenneTech/nuxt-base-starter/commit/57199194d95aa15783d1f04a2216db1580f493d4))
11
+
12
+ ### [0.1.6](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.5...v0.1.6) (2023-03-31)
13
+
14
+
15
+ ### Features
16
+
17
+ * Change default host ([b026fed](https://github.com/lenneTech/nuxt-base-starter/commit/b026fed7eaf8c5964bac5cc4a5c37074878a8d30))
18
+
5
19
  ### [0.1.5](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.4...v0.1.5) (2023-03-31)
6
20
 
7
21
 
@@ -3,7 +3,7 @@ export default defineNuxtConfig({
3
3
  srcDir: './src',
4
4
  modules: ['@nuxtjs/tailwindcss', '@lenne.tech/nuxt-base'],
5
5
  nuxtBase: {
6
- host: 'http://localhost:3001/api'
6
+ host: 'http://localhost:3100/api'
7
7
  },
8
8
  imports: {
9
9
  dirs: ['./states', './stores'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nuxt-base",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Starter to generate a configured environment with VueJS, Nuxt, Tailwind, Eslint, @lenne.tech/nuxt-base, Storybook, Unit Tests, Cypress etc.",
5
5
  "main": "index.js",
6
6
  "bin": {