Skip to content

Commit e944c78

Browse files
committed
add gaurav9576 scope
1 parent 80c4115 commit e944c78

File tree

26 files changed

+51
-51
lines changed

26 files changed

+51
-51
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
- name: Yarn Install
4242
run: yarn install --ignore-engines --frozen-lockfile
4343
- name: Run ember-cli-fastboot Tests
44-
run: yarn workspace ember-cli-fastboot test:ember
44+
run: yarn workspace @gaurav9576/ember-cli-fastboot test:ember
4545
- name: Run fastboot Tests
4646
if: ${{ matrix.os != 'windows-latest' }}
47-
run: yarn workspace fastboot test
47+
run: yarn workspace @gaurav9576/fastboot test
4848
- name: Run fastboot-express-middleware Tests
49-
run: yarn workspace fastboot-express-middleware test
49+
run: yarn workspace @gaurav9576/fastboot-express-middleware test
5050
- name: Run fastboot-app-server Tests
51-
run: yarn workspace fastboot-app-server test:mocha
51+
run: yarn workspace @gaurav9576/fastboot-app-server test:mocha
5252

5353
integration-tests:
5454
name: Integration Tests
@@ -124,10 +124,10 @@ jobs:
124124
yarn install --ignore-engines --frozen-lockfile
125125
- name: Precook node_modules
126126
run: |
127-
yarn workspace ember-cli-fastboot pretest:precook
127+
yarn workspace @gaurav9576/ember-cli-fastboot pretest:precook
128128
- name: Run Mocha Tests
129129
run: |
130-
yarn workspace ember-cli-fastboot test:mocha
130+
yarn workspace @gaurav9576/ember-cli-fastboot test:mocha
131131
132132
try-scenarios:
133133
name: "${{ matrix.ember-try-scenario }} Scenario for ember-cli-fastboot"
@@ -163,4 +163,4 @@ jobs:
163163
cache: yarn
164164
- run: yarn install --ignore-engines --frozen-lockfile
165165
- name: test
166-
run: yarn workspace ember-cli-fastboot ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
166+
run: yarn workspace @gaurav9576/ember-cli-fastboot ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
},
1717
"scripts": {
1818
"test": "npm-run-all test:*",
19-
"test:ember-cli-fastboot": "yarn workspace ember-cli-fastboot test:ember",
20-
"test:fastboot": "yarn workspace fastboot test",
21-
"test:fastboot-express-middleware": "yarn workspace fastboot-express-middleware test",
22-
"test:fastboot-app-server": "yarn workspace fastboot-app-server test:mocha",
19+
"test:ember-cli-fastboot": "yarn workspace @gaurav9576/ember-cli-fastboot test:ember",
20+
"test:fastboot": "yarn workspace @gaurav9576/fastboot test",
21+
"test:fastboot-express-middleware": "yarn workspace @gaurav9576/fastboot-express-middleware test",
22+
"test:fastboot-app-server": "yarn workspace @gaurav9576/fastboot-app-server test:mocha",
2323
"test:integration": "yarn workspace integration-tests test",
2424
"test:extra": "yarn workspace basic-app test:mocha && yarn workspace custom-fastboot-app test:mocha"
2525
},
@@ -30,7 +30,7 @@
3030
"release-it-yarn-workspaces": "^2.0.0"
3131
},
3232
"resolutions": {
33-
"fastboot": "4.1.1"
33+
"@gaurav9576/fastboot": "4.1.1"
3434
},
3535
"publishConfig": {
3636
"registry": "https://registry.npmjs.org"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from 'ember-cli-fastboot/instance-initializers/clear-double-boot';
1+
export { default } from '@gaurav9576/ember-cli-fastboot/instance-initializers/clear-double-boot';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from 'ember-cli-fastboot/locations/none';
1+
export { default } from '@gaurav9576/ember-cli-fastboot/locations/none';
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from 'ember-cli-fastboot/services/fastboot';
1+
export { default } from '@gaurav9576/ember-cli-fastboot/services/fastboot';

packages/ember-cli-fastboot/fix-node-modules.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Options:
2828
}
2929

3030
function run(shouldRestore) {
31-
['fastboot', 'fastboot-express-middleware'].forEach((packageName) => {
31+
['@gaurav9576/fastboot', '@gaurav9576/fastboot-express-middleware'].forEach((packageName) => {
3232
const nodeModulesPackageDir = path.join(nodeModulesDir, packageName);
3333
const precookedPackageDir = path.join(precookedDir, packageName);
3434
const workspacesPackageDir = path.resolve(packagesDir, packageName);

packages/ember-cli-fastboot/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const path = require('path');
55
const fs = require('fs');
66

77
const MergeTrees = require('broccoli-merge-trees');
8-
const FastBootExpressMiddleware = require('fastboot-express-middleware');
9-
const FastBoot = require('fastboot');
8+
const FastBootExpressMiddleware = require('@gaurav9576/fastboot-express-middleware');
9+
const FastBoot = require('@gaurav9576/fastboot');
1010
const chalk = require('chalk');
1111

1212
const fastbootAppBoot = require('./lib/utilities/fastboot-app-boot');
@@ -149,7 +149,7 @@ module.exports = {
149149

150150
_processAddon(addon, fastbootTrees) {
151151
// walk through each addon and grab its fastboot tree
152-
const currentAddonFastbootPath = path.join(addon.root, 'fastboot');
152+
const currentAddonFastbootPath = path.join(addon.root, '@gaurav9576/fastboot');
153153

154154
let fastbootTree;
155155
if (this.existsSync(currentAddonFastbootPath)) {

packages/ember-cli-fastboot/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "ember-cli-fastboot",
2+
"name": "@gaurav9576/ember-cli-fastboot",
33
"version": "4.1.1",
44
"description": "Server-side rendering for Ember.js apps",
55
"keywords": [
@@ -39,8 +39,8 @@
3939
"ember-cli-lodash-subset": "^2.0.1",
4040
"ember-cli-preprocess-registry": "^3.3.0",
4141
"ember-cli-version-checker": "^5.1.2",
42-
"fastboot": "4.1.1",
43-
"fastboot-express-middleware": "4.1.1",
42+
"@gaurav9576/fastboot": "4.1.1",
43+
"@gaurav9576/fastboot-express-middleware": "4.1.1",
4444
"fastboot-transform": "^0.1.3",
4545
"fs-extra": "^10.0.0",
4646
"json-stable-stringify": "^1.0.1",

packages/ember-cli-fastboot/test/fixtures/request/lib/post-middleware/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var bodyParser = require('body-parser');
2-
var FastBootExpressMiddleware = require('fastboot-express-middleware');
3-
var FastBoot = require('fastboot');
2+
var FastBootExpressMiddleware = require('@gaurav9576/fastboot-express-middleware');
3+
var FastBoot = require('@gaurav9576/fastboot');
44

55
module.exports = {
66
name: 'post-middleware',

packages/ember-cli-fastboot/test/fixtures/request/lib/post-middleware/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "post-middlware",
33
"ember-addon": {
44
"after": [
5-
"ember-cli-fastboot"
5+
"@gaurav9576/ember-cli-fastboot"
66
]
77
},
88
"keywords": [

0 commit comments

Comments
 (0)