Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
aliwesome committed Dec 13, 2024
1 parent 39c6991 commit b42a3e3
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 20 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2024-01-20
## [Unreleased]
### Added
for new features.
### Changed
for changes in existing functionality.
### Deprecated
for soon-to-be removed features.
### Removed
for now removed features.
### Fixed
for any bug fixes.
### Security
for any security issue



## [1.0.0] - 2024-12-13
### Added
- Initial release
- Vue.js plugin support
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# nuxt-drip
# drip-nuxt

[![npm version][npm-version-src]][npm-version-href]
[![npm downloads][npm-downloads-src]][npm-downloads-href]
Expand All @@ -18,18 +18,18 @@

## Installation

1. Add `nuxt-drip` dependency to your project:
1. Add `drip-nuxt` dependency to your project:

```bash
# Using npm
npm install nuxt-drip
npm install drip-nuxt
```

2. Add `nuxt-drip` to the `modules` section of your `nuxt.config.js` file:
2. Add `drip-nuxt` to the `modules` section of your `nuxt.config.js` file:

```js
export default {
modules: ['nuxt-drip'],
modules: ['drip-nuxt'],
}
```

Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{
"name": "nuxt-drip",
"name": "drip-nuxt",
"version": "1.0.0",
"description": "Drip integration for Nuxt 2",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"main": "nuxt/index.js",
"module": "nuxt/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"nuxt"
],
"scripts": {
Expand All @@ -31,7 +29,7 @@
},
"license": "MIT",
"peerDependencies": {
"nuxt": "^2.15.0",
"nuxt": "^2.0.0",
"vue": "^2.6.14"
},
"devDependencies": {
Expand All @@ -52,12 +50,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/farsidev/nuxt-drip.git"
"url": "git+https://github.com/farsidev/drip-nuxt.git"
},
"bugs": {
"url": "https://github.com/farsidev/nuxt-drip/issues"
"url": "https://github.com/farsidev/drip-nuxt/issues"
},
"homepage": "https://github.com/farsidev/nuxt-drip#readme",
"homepage": "https://github.com/farsidev/drip-nuxt#readme",
"engines": {
"node": ">=14.0.0 <18.0.0",
"npm": ">=6.0.0"
Expand Down

0 comments on commit b42a3e3

Please sign in to comment.