Skip to content

Commit

Permalink
chore(release): v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NyllRE committed Apr 25, 2024
1 parent 10cf20a commit df8bf8d
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 46 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog


## v0.2.1

[compare changes](https://github.com/NyllRE/nuxt-file-storage/compare/v0.1.4...v0.2.1)

## v0.1.4

[compare changes](https://github.com/NyllRE/nuxt-file-storage/compare/v0.1.3...v0.1.4)
Expand Down
92 changes: 46 additions & 46 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"name": "nuxt-file-storage",
"version": "0.2.0",
"description": "Easy solution to store files in your nuxt apps. Be able to upload files from the frontend and recieve them from the backend to then save the files in your project.",
"repository": "NyllRE/nuxt-file-storage",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.9.3",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.9.3",
"@nuxt/test-utils": "^3.9.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.11.5",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"mime-types": "^2.1.35",
"nuxt": "^3.9.3",
"vitest": "^1.0.0"
}
"name": "nuxt-file-storage",
"version": "0.2.1",
"description": "Easy solution to store files in your nuxt apps. Be able to upload files from the frontend and recieve them from the backend to then save the files in your project.",
"repository": "NyllRE/nuxt-file-storage",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.9.3",
"defu": "^6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.9.3",
"@nuxt/test-utils": "^3.9.0",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.11.5",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"mime-types": "^2.1.35",
"nuxt": "^3.9.3",
"vitest": "^1.0.0"
}
}

0 comments on commit df8bf8d

Please sign in to comment.