Skip to content
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

[TIMOB-26333] Generate source maps #44

Merged
merged 2 commits into from Aug 31, 2018
Merged

Conversation

garymathews
Copy link
Contributor

@garymathews garymathews commented Aug 23, 2018

  • Generate source maps during development builds or through opt-in tiapp.xml property <source-maps>true</source-maps>
TEST CASE
class Window {

	constructor () {
		this.view = Ti.UI.createWindow({ backgroundColor: 'gray' });
		this.button = Ti.UI.createButton({ title: 'CLICK' });

		this.view.add(this.button);
	}

	show () {
		this.view.open();
	}

}

new Window().show();
  • Build an Android Titanium app with transpile enabled, debug using Chrome
    • appc run -p android --debug-host /127.0.0.1:51388

JIRA Ticket

Copy link
Contributor

@sgtcoolguy sgtcoolguy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@sgtcoolguy sgtcoolguy merged commit 4357d5c into tidev:master Aug 31, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants