Skip to content
Snippets Groups Projects
  • Cam Saul's avatar
    0a15637f
    Rename `metabase.mbql` to `metabase.legacy-mbql` (#40158) · 0a15637f
    Cam Saul authored
    * Wow
    
    * Test fix :wrench:
    
    * Fixes
    
    * Actions should use strings for column names (fix :update-row and :create-row normalization)
    
    * MLv2 schema should check against keys for the other query type
    
    * Ok, have I fixed things?
    
    * More fixes :wrench:
    
    * Fix indentation
    
    * Another round of test fixes. :wrench:
    
    * Hopefully the last few test fixes :wrench:
    
    * We need to test normalization for queries that have keyword keys as well.
    
    * Fix Cljs i18n namespaces
    
    * Sort namespaces
    
    * Only test against H2
    
    * Rename `metabase.mbql` to `metabase.legacy-mbql`
    
    * Fix Kondo warnings
    
    * Test fixes :wrench:
    
    * Register MBQL clause schemas and test fixes :wrench:
    
    * Test fixes and PR feedback
    
    * Test fix
    
    * Remove the normalization tests
    
    * Test fixes :wrench:
    
    * Fix kondo
    
    * Fix import
    
    * Another fix :wrench:
    
    * Merge
    
    * FIXES
    
    * Add another missing REQUIRE
    Rename `metabase.mbql` to `metabase.legacy-mbql` (#40158)
    Cam Saul authored
    * Wow
    
    * Test fix :wrench:
    
    * Fixes
    
    * Actions should use strings for column names (fix :update-row and :create-row normalization)
    
    * MLv2 schema should check against keys for the other query type
    
    * Ok, have I fixed things?
    
    * More fixes :wrench:
    
    * Fix indentation
    
    * Another round of test fixes. :wrench:
    
    * Hopefully the last few test fixes :wrench:
    
    * We need to test normalization for queries that have keyword keys as well.
    
    * Fix Cljs i18n namespaces
    
    * Sort namespaces
    
    * Only test against H2
    
    * Rename `metabase.mbql` to `metabase.legacy-mbql`
    
    * Fix Kondo warnings
    
    * Test fixes :wrench:
    
    * Register MBQL clause schemas and test fixes :wrench:
    
    * Test fixes and PR feedback
    
    * Test fix
    
    * Remove the normalization tests
    
    * Test fixes :wrench:
    
    * Fix kondo
    
    * Fix import
    
    * Another fix :wrench:
    
    * Merge
    
    * FIXES
    
    * Add another missing REQUIRE
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
shadow-cljs.edn 1.29 KiB
;; shadow-cljs configuration
{:deps {:aliases [:cljs]}

 :nrepl
 {:middleware
  [cider.nrepl/cider-middleware
   cider.piggieback/wrap-cljs-repl
   refactor-nrepl.middleware/wrap-refactor]
  :port 50655}

 :builds
 {:app
  {:target     :npm-module
   :output-dir "target/cljs_release/"
   :dev        {:output-dir "target/cljs_dev/"
                :compiler-options {:reader-features #{:cljs-dev}}}
   :compiler-options {:reader-features #{:cljs-release}
                      :source-map      true}
   :entries    [metabase.domain-entities.queries.util
                metabase.lib.column-group
                metabase.lib.js
                metabase.lib.limit
                metabase.lib.types.isa
                metabase.legacy-mbql.js
                metabase.shared.dashboards.constants
                metabase.shared.formatting.constants
                metabase.shared.formatting.date
                metabase.shared.formatting.numbers
                metabase.shared.formatting.time
                metabase.shared.parameters.parameters
                metabase.shared.util.currency
                metabase.shared.util.time
                metabase.types
                metabase.util.devtools]}

  :test
  {:target    :node-test
   :output-to "target/node-tests.js"
   :ns-regexp "-test$"
   :autorun   true}}}