Skip to content

Commit 82061c7

Browse files
committed
experiments
1 parent a8197df commit 82061c7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ coverage/
44
awsconfig
55
/dist
66
/emails/dist
7-
/public/app_gen
7+
/public/.app_gen
88
/tmp
99

1010
docs/AWS_S3_BUCKET

public/app/components/require.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require.config({
22
urlArgs: 'bust=' + (new Date().getTime()),
3-
baseUrl: 'public/app_gen',
3+
baseUrl: 'public/.app_gen',
44

55
paths: {
66
config: 'components/config',

public/views/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<!-- build:js [[.AppSubUrl]]/app/app.js -->
2121
<script src="[[.AppSubUrl]]/public/vendor/requirejs/require.js"></script>
22-
<script src="[[.AppSubUrl]]/public/app_gen/components/require.config.js"></script>
22+
<script src="[[.AppSubUrl]]/public/.app_gen/components/require.config.js"></script>
2323
<!-- endbuild -->
2424
</head>
2525

tasks/options/copy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = function(config) {
1212
cwd: '<%= srcDir %>/app',
1313
expand: true,
1414
src: ['**/*.js', '**/*.html'],
15-
dest: '<%= srcDir %>/app_gen'
15+
dest: '<%= srcDir %>/.app_gen'
1616
}
1717

1818
};

tasks/options/typescript.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = function() {
44
return {
55
build: {
66
src: ['public/app/**/*.ts'],
7-
dest: 'public/app_gen',
7+
dest: 'public/.app_gen',
88
options: {
99
module: 'amd', //or commonjs
1010
target: 'es5', //or es3
@@ -16,7 +16,7 @@ module.exports = function() {
1616
},
1717
watch: {
1818
src: ['public/app/**/*.ts'],
19-
dest: 'public/app_gen',
19+
dest: 'public/.app_gen',
2020
options: {
2121
module: 'amd', //or commonjs
2222
target: 'es5', //or es3

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"sourceMap": true,
44
"declaration": true,
5-
"outDir": "public/app_gen",
5+
"outDir": "public/.app_gen",
66
"target": "ES5",
77
"rootDir": "public/app",
88
"module": "amd",

0 commit comments

Comments
 (0)