Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Create standardized Docker development environment via .devcontainer #445

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

Merged
merged 13 commits into from
Aug 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add clean package script and express rebuild script in terms of n…
…pm scripts

This aims to express all build tasks via npm scripts via make commands, rather than expressing some scripts as npm scripts and others in terms of make.
  • Loading branch information
Taytay committed Mar 24, 2021
commit 38c40a18d8c5e8e1c1cbb681a33c8a54df370e69
3 changes: 2 additions & 1 deletion 3 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"main": "./dist/sql-wasm.js",
"scripts": {
"build": "make",
"rebuild": "make clean && make",
"rebuild": "npm run clean && npm run build",
"clean": "make clean",
"test": "npm run lint && npm run test-asm && npm run test-asm-debug && npm run test-wasm && npm run test-wasm-debug && npm run test-asm-memory-growth",
"lint": "eslint .",
"prettify": "eslint . --fix",
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.