Skip to content

chore: add scope on package name #375

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/2.x/babel-in-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"jest": "27.x",
"ts-jest": "^27.0.4",
"typescript": "^3.2.2",
"vue2-jest": "~27.0.0-alpha.1"
"@vue/vue2-jest": "~27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -30,7 +30,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue2-jest"
"^.+\\.vue$": "@vue/vue2-jest"
}
},
"babel": {
Expand Down
4 changes: 2 additions & 2 deletions e2e/2.x/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"sass": "^1.23.7",
"ts-jest": "^27.0.4",
"typescript": "^3.2.2",
"vue2-jest": "~27.0.0-alpha.1"
"@vue/vue2-jest": "~27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -35,7 +35,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue2-jest"
"^.+\\.vue$": "@vue/vue2-jest"
},
"moduleNameMapper": {
"^~?__styles/(.*)$": "<rootDir>/components/styles/$1"
Expand Down
2 changes: 1 addition & 1 deletion e2e/2.x/basic/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import TypeScript from './components/TypeScript.vue'
import TemplateString from './components/TemplateString.vue'
import { resolve } from 'path'
import { readFileSync } from 'fs'
import jestVue from 'vue2-jest'
import jestVue from '@vue/vue2-jest'
import RenderFunction from './components/RenderFunction.vue'
import Jade from './components/Jade.vue'
import FunctionalSFC from './components/FunctionalSFC.vue'
Expand Down
4 changes: 2 additions & 2 deletions e2e/2.x/custom-transformers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"postcss": "^7.0.13",
"postcss-color-function": "^4.0.1",
"sass": "^1.23.7",
"vue2-jest": "~27.0.0-alpha.1"
"@vue/vue2-jest": "~27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -30,7 +30,7 @@
],
"transform": {
"^.+\\.js$": "./babel-transformer.js",
"^.+\\.vue$": "vue2-jest"
"^.+\\.vue$": "@vue/vue2-jest"
},
"moduleNameMapper": {
"^~?__styles/(.*)$": "<rootDir>/components/styles/$1"
Expand Down
4 changes: 2 additions & 2 deletions e2e/2.x/style/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"postcss": "^7.0.13",
"sass": "^1.23.7",
"stylus": "^0.54.5",
"vue2-jest": "~27.0.0-alpha.1"
"@vue/vue2-jest": "~27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -30,7 +30,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue2-jest"
"^.+\\.vue$": "@vue/vue2-jest"
},
"moduleNameMapper": {
"^~tmp/(.*)": "/tmp/$1",
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/babel-in-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"jest": "^27.0.0",
"ts-jest": "^27.0.1",
"typescript": "^4.1.2",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -28,7 +28,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
}
},
"babel": {
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"ts-jest": "^27.0.1",
"typescript": "^4.1.2",
"vue-class-component": "^8.0.0-beta.4",
"vue3-jest": "^27.0.0-alpha.1",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"vue-property-decorator": "^10.0.0-rc.3"
},
"jest": {
Expand All @@ -37,7 +37,7 @@
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
},
"moduleNameMapper": {
"^~?__styles/(.*)$": "<rootDir>/components/styles/$1"
Expand Down
2 changes: 1 addition & 1 deletion e2e/3.x/basic/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import ClassComponent from './components/ClassComponent.vue'
import ClassComponentWithMixin from './components/ClassComponentWithMixin.vue'
import ClassComponentProperty from './components/ClassComponentProperty.vue'
import TypeScript from './components/TypeScript.vue'
import jestVue from 'vue3-jest'
import jestVue from '@vue/vue3-jest'
import RenderFunction from './components/RenderFunction.vue'
import FunctionalSFC from './components/FunctionalSFC.vue'
import CoffeeScript from './components/CoffeeScript.vue'
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/custom-transformers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"postcss": "^7.0.13",
"postcss-color-function": "^4.0.1",
"sass": "^1.23.7",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -31,7 +31,7 @@
],
"transform": {
"^.+\\.js$": "./babel-transformer.js",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
},
"moduleNameMapper": {
"^~?__styles/(.*)$": "<rootDir>/components/styles/$1"
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@babel/preset-env": "^7.9.0",
"coffeescript": "^2.3.2",
"jest": "^27.0.0",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -25,7 +25,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
}
},
"babel": {
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/style/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"postcss": "^7.0.13",
"sass": "^1.23.7",
"stylus": "^0.54.5",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -30,7 +30,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
},
"moduleNameMapper": {
"^~?__styles/(.*)$": "<rootDir>/components/styles/$1"
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/typescript-with-babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"jest": "^27.0.0",
"ts-jest": "^27.0.1",
"typescript": "^4.1.2",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -32,7 +32,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
}
},
"babel": {
Expand Down
4 changes: 2 additions & 2 deletions e2e/3.x/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"jest": "^27.0.0",
"ts-jest": "^27.0.1",
"typescript": "^4.1.2",
"vue3-jest": "^27.0.0-alpha.1"
"@vue/vue3-jest": "^27.0.0-alpha.1"
},
"jest": {
"testEnvironment": "jsdom",
Expand All @@ -30,7 +30,7 @@
},
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.vue$": "vue3-jest"
"^.+\\.vue$": "@vue/vue3-jest"
}
}
}
2 changes: 1 addition & 1 deletion packages/vue3-jest/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vue3-jest",
"name": "@vue/vue3-jest",
"version": "27.0.0-alpha.2",
"description": "Jest Vue transform",
"main": "lib/index.js",
Expand Down