Skip to content

Commit

Permalink
refactor: rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Jun 13, 2024
1 parent 6c5c5de commit d1ca2e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

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.

### [0.0.2](https://github.com/teslahunt/vin/compare/v0.0.1...v0.0.2) (2024-06-13)
### [0.0.2](https://github.com/teslahunt/tesla-vin/compare/v0.0.1...v0.0.2) (2024-06-13)

### 0.0.1 (2024-05-16)
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ console.log(vinDecoded)
// model: 'Tesla Model 3',
// motor: 'Single Motor Standard (3DU 800A)',
// photos: [
// 'https://cdn.jsdelivr.net/gh/teslahunt/vin@master/images/3/1.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/vin@master/images/3/2.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/vin@master/images/3/3.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/vin@master/images/3/4.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/vin@master/images/3/5.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/tesla-vin@master/images/3/1.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/tesla-vin@master/images/3/2.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/tesla-vin@master/images/3/3.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/tesla-vin@master/images/3/4.jpeg',
// 'https://cdn.jsdelivr.net/gh/teslahunt/tesla-vin@master/images/3/5.jpeg',
// ],
// plantOfManufacture: 'Tesla Fremont, California (USA)',
// restraintSystems: 'Type 2 Manual seatbelts (FR, SR*3) with front Airbags, side Inflatable restraints',
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tesla-vin",
"description": "Tesla Vehicle Identification Number (VIN) implemented following Model S/3/X/Y service manuals",
"homepage": "https://github.com/teslahunt/vin",
"homepage": "https://github.com/teslahunt/tesla-vin",
"version": "0.0.2",
"main": "src/index.js",
"exports": {
Expand All @@ -20,10 +20,10 @@
],
"repository": {
"type": "git",
"url": "git+https://github.com/teslahunt/vin.git"
"url": "git+https://github.com/teslahunt/tesla-vin.git"
},
"bugs": {
"url": "https://github.com/teslahunt/vin/issues"
"url": "https://github.com/teslahunt/tesla-vin/issues"
},
"keywords": [
"decoder",
Expand Down
2 changes: 1 addition & 1 deletion src/photos.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

const BASE_URL = 'https://teslahunt.github.io/vin/images'
const BASE_URL = 'https://teslahunt.github.io/tesla-vin/images'

const S = year => {
switch (year) {
Expand Down

0 comments on commit d1ca2e4

Please sign in to comment.