notes-to-strapi-export-article-ai 1.0.4 → 1.0.8

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.
@@ -19,8 +19,8 @@ jobs:
19
19
 
20
20
  - name: Configure Git
21
21
  run: |
22
- git config --local user.email "your-email@example.com"
23
- git config --local user.name "Your Name"
22
+ git config --local user.email "cinquin.andy@gmail.com"
23
+ git config --local user.name "CINQUIN Andy"
24
24
 
25
25
  - name: Use Node.js
26
26
  uses: actions/setup-node@v4
@@ -41,19 +41,19 @@ jobs:
41
41
  new_version=$(npx semver -i patch $current_version)
42
42
  echo "New version: $new_version"
43
43
 
44
- while git rev-parse v$new_version >/dev/null 2>&1; do
44
+ while git rev-parse $new_version >/dev/null 2>&1; do
45
45
  new_version=$(npx semver -i patch $new_version)
46
- echo "Tag v$new_version already exists. Trying next version..."
46
+ echo "Tag $new_version already exists. Trying next version..."
47
47
  done
48
48
 
49
49
  npm version $new_version --no-git-tag-version
50
50
  sed -i "s/\"version\": \".*\"/\"version\": \"$new_version\"/" manifest.json
51
- echo "::set-output name=VERSION::$new_version"
51
+ echo "version=$new_version" >> $GITHUB_OUTPUT
52
52
 
53
53
  - name: Commit and Push Version Update
54
54
  run: |
55
55
  git add package.json manifest.json
56
- git commit -m "chore(release): ${{ steps.version-bump.outputs.VERSION }}"
57
- git tag v${{ steps.version-bump.outputs.VERSION }}
56
+ git commit -m "chore(release): ${{ steps.version-bump.outputs.version }}"
57
+ git tag ${{ steps.version-bump.outputs.version }}
58
58
  git push origin main --follow-tags
59
- git push origin refs/tags/v${{ steps.version-bump.outputs.VERSION }}
59
+ git push origin refs/tags/${{ steps.version-bump.outputs.version }}
@@ -3,7 +3,7 @@ name: Publish to npm when a new tag is pushed
3
3
  on:
4
4
  push:
5
5
  tags:
6
- - 'v*'
6
+ - '*'
7
7
 
8
8
  jobs:
9
9
  publish:
package/README.md CHANGED
@@ -167,13 +167,3 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file
167
167
 
168
168
  🌟 Elevate your content workflow with Strapi Exporter and unleash the full potential of your Obsidian notes! 🌟
169
169
 
170
- ### Roadmap
171
-
172
- - [ ] Make it available as a plugin in Obsidian
173
- - [ ] Add tests
174
- - [ ] Renovate
175
- - [ ] ajouter l'étape de création du plugin (création du folder)
176
- - [ ] ajouter l'étape de redémarrage d'obsidian
177
- - [ ] ajouter l'étape de configuration du plugin
178
- - [ ] ajouter l'étape de configuration du token d'access de strapi (accès etc)
179
-
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "notes-to-strapi-export-article-ai",
3
3
  "name": "Strapi Exporter, Notes to Strapi article AI enhanced",
4
- "version": "1.0.4",
4
+ "version": "1.0.8",
5
5
  "minAppVersion": "1.5.0",
6
6
  "description": "Effortlessly export your notes to Strapi CMS with AI-powered image handling and SEO optimization. Replace all the images in your notes by uploaded images in Strapi, and add SEO metadata to uploaded images.",
7
7
  "author": "Cinquin Andy",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notes-to-strapi-export-article-ai",
3
- "version": "1.0.4",
3
+ "version": "1.0.8",
4
4
  "description": "Effortlessly export your Obsidian notes to Strapi CMS with AI-powered image handling and SEO optimization. Replace all the images in your notes by uploaded images in Strapi, and add SEO metadata to uploaded images.",
5
5
  "main": "main.js",
6
6
  "scripts": {
@@ -11,9 +11,9 @@
11
11
  "keywords": [],
12
12
  "author": "Cinquin Andy",
13
13
  "devDependencies": {
14
- "@types/node": "20.11.30",
15
- "@typescript-eslint/eslint-plugin": "7.3.1",
16
- "@typescript-eslint/parser": "7.3.1",
14
+ "@types/node": "20.12.2",
15
+ "@typescript-eslint/eslint-plugin": "7.4.0",
16
+ "@typescript-eslint/parser": "7.4.0",
17
17
  "builtin-modules": "3.3.0",
18
18
  "esbuild": "0.20.2",
19
19
  "obsidian": "latest",
package/versions.json CHANGED
@@ -1,4 +1,8 @@
1
1
  {
2
2
  "1.0.2": "1.0.2",
3
- "1.0.4": "1.5.0"
3
+ "1.0.4": "1.5.0",
4
+ "1.0.5": "1.5.0",
5
+ "1.0.6": "1.5.0",
6
+ "1.0.7": "1.5.0",
7
+ "1.0.8": "1.5.0"
4
8
  }