Skip to content

Commit a450e13

Browse files
committed
mo-js -> @mojs/core 🎉
Replaced all instances of the old npm hosted repo `mo-js` to the new officialy hosted (by the mojs npm organisation) core library `@mojs/core`
1 parent 8e5a2d0 commit a450e13

18 files changed

+26
-6793
lines changed

‎docs/.vuepress/components/DemoElegantTriangles.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
export default {
1212
1313
mounted: function () {
14-
import("mo-js").then(module => {
14+
import("@mojs/core").then(module => {
1515
import('mojs-player').then(module => {
1616
const COLORS = {
1717
white: '#ffffff',

‎docs/.vuepress/components/DemoExpandingCircles.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
motionQuery.addListener(handleReduceMotionChanged);
4242
handleReduceMotionChanged(); // trigger once on load to check initial value
4343
44-
import("mo-js").then(module => {
44+
import("@mojs/core").then(module => {
4545
import('mojs-player').then(module => {
4646
4747

‎docs/.vuepress/components/DemoFunkySquare.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
export default {
1212
1313
mounted: function () {
14-
import("mo-js").then(module => {
14+
import("@mojs/core").then(module => {
1515
import('mojs-player').then(module => {
1616
const COLORS = {
1717
white: '#ffffff',

‎docs/.vuepress/components/DemoLove.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
4646
mounted: function () {
47-
import("mo-js").then(module => {
47+
import("@mojs/core").then(module => {
4848
import('mojs-player').then(module => {
4949
const parent = document.getElementById('demo-love');
5050

‎docs/.vuepress/components/DemoMojsLogoReveal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Usage:
2222
},
2323
2424
mounted: function () {
25-
import("mo-js").then(module => {
25+
import("@mojs/core").then(module => {
2626
import('mojs-player').then(module => {
2727
const COLORS = {
2828
white: '#ffffff',

‎docs/.vuepress/components/DemoSpeechBubble.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
export default {
1212
1313
mounted: function () {
14-
import("mo-js").then(module => {
14+
import("@mojs/core").then(module => {
1515
import('mojs-player').then(module => {
1616
/* ADD CUSTOM SHAPES */
1717
class Bubble extends mojs.CustomShape {

‎docs/.vuepress/components/DemoTriangles.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
export default {
1212
1313
mounted: function () {
14-
import("mo-js").then(module => {
14+
import("@mojs/core").then(module => {
1515
import('mojs-player').then(module => {
1616
const COLORS = {
1717
white: '#ffffff',

‎docs/.vuepress/components/ExampleCircle.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</template>
77

88
<script>
9-
import mojs from 'mo-js';
9+
import mojs from '@mojs/core';
1010
1111
export default {
1212

‎docs/.vuepress/components/ExampleSpinner.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</template>
77

88
<script>
9-
import mojs from 'mo-js';
9+
import mojs from '@mojs/core';
1010
1111
export default {
1212
props: {

‎docs/.vuepress/components/MojsCode.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ new mojs.Shape({
6969
},
7070
7171
mounted () {
72-
import('mo-js').then(module => {
72+
import('@mojs/core').then(module => {
7373
import('mojs-player').then(module => {
7474
this.handleCode(this.code);
7575
});

0 commit comments

Comments
 (0)