Skip to content

Commit 19d84e9

Browse files
committed
build: remove @ prefix from output paths
1 parent 0cacd54 commit 19d84e9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const shell = require('shelljs');
44
const chalk = require('chalk');
55

66
const DIST_DIR = `dist`;
7-
const MODULES_DIR = `${DIST_DIR}/@ngrx`;
7+
const MODULES_DIR = `${DIST_DIR}/ngrx`;
88
const BUNDLES_DIR = `${DIST_DIR}/bundles`;
99

1010
const PACKAGES = [

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "ngrx-forms",
33
"version": "1.1.1",
44
"description": "Proper integration of forms in Angular 4 applications using ngrx",
5-
"module": "@ngrx/forms.es5.js",
6-
"es2015": "@ngrx/forms.js",
5+
"module": "ngrx/forms.es5.js",
6+
"es2015": "ngrx/forms.js",
77
"main": "bundles/forms.umd.js",
88
"scripts": {
99
"build": "node build.js",
@@ -14,7 +14,7 @@
1414
"publish-lib": "npm publish ./dist",
1515
"compodoc": "compodoc -p tsconfig.json",
1616
"compodoc-serve": "compodoc -s",
17-
"example-install": "npm run build && move ./dist/@ngrx ./dist/ngrx && npm pack ./dist && cd example-app && npm install ../ngrx-forms-1.1.1.tgz && move ./node_modules/ngrx-forms/ngrx ./node_modules/ngrx-forms/@ngrx && cd .."
17+
"example-install": "npm run build && npm pack ./dist && cd example-app && npm install ../ngrx-forms-1.1.1.tgz && cd .."
1818
},
1919
"typings": "./forms.d.ts",
2020
"author": "",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const globals = {
1010
};
1111

1212
export default {
13-
entry: './dist/@ngrx/forms.es5.js',
13+
entry: './dist/ngrx/forms.es5.js',
1414
dest: './dist/bundles/forms.umd.js',
1515
format: 'umd',
1616
exports: 'named',

validation/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "ngrx-forms/validation",
33
"typings": "../validation.d.ts",
44
"main": "../bundles/forms-validation.umd.js",
5-
"module": "../@ngrx/forms/validation.es5.js",
6-
"es2015": "../@ngrx/forms/validation.js"
5+
"module": "../ngrx/forms/validation.es5.js",
6+
"es2015": "../ngrx/forms/validation.js"
77
}

validation/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const globals = {
66
};
77

88
export default {
9-
entry: './dist/@ngrx/forms/validation.es5.js',
9+
entry: './dist/ngrx/forms/validation.es5.js',
1010
dest: './dist/bundles/forms-validation.umd.js',
1111
format: 'umd',
1212
exports: 'named',

0 commit comments

Comments
 (0)