mirror of
https://github.com/penpot/penpot.git
synced 2025-03-13 16:21:57 -05:00
🔧 Disable tokens in dev env by default
This commit is contained in:
parent
b3b8121d60
commit
040a94f719
3 changed files with 5 additions and 5 deletions
|
@ -30,8 +30,7 @@ export PENPOT_FLAGS="\
|
||||||
enable-access-tokens \
|
enable-access-tokens \
|
||||||
enable-tiered-file-data-storage \
|
enable-tiered-file-data-storage \
|
||||||
enable-file-validation \
|
enable-file-validation \
|
||||||
enable-file-schema-validation \
|
enable-file-schema-validation";
|
||||||
disable-feature-design-tokens";
|
|
||||||
|
|
||||||
# Default deletion delay for devenv
|
# Default deletion delay for devenv
|
||||||
export PENPOT_DELETION_DELAY="24h"
|
export PENPOT_DELETION_DELAY="24h"
|
||||||
|
|
|
@ -22,8 +22,7 @@ export PENPOT_FLAGS="\
|
||||||
enable-access-tokens \
|
enable-access-tokens \
|
||||||
enable-tiered-file-data-storage \
|
enable-tiered-file-data-storage \
|
||||||
enable-file-validation \
|
enable-file-validation \
|
||||||
enable-file-schema-validation \
|
enable-file-schema-validation";
|
||||||
disable-feature-design-tokens";
|
|
||||||
|
|
||||||
export OPTIONS="
|
export OPTIONS="
|
||||||
-A:jmx-remote -A:dev \
|
-A:jmx-remote -A:dev \
|
||||||
|
|
|
@ -110,7 +110,9 @@
|
||||||
(when *assert*
|
(when *assert*
|
||||||
(->> (rx/from cfeat/no-migration-features)
|
(->> (rx/from cfeat/no-migration-features)
|
||||||
;; text editor v2 isn't enabled by default even in devenv
|
;; text editor v2 isn't enabled by default even in devenv
|
||||||
(rx/filter #(not (or (contains? cfeat/backend-only-features %) (= "text-editor/v2" %))))
|
(rx/filter #(not (or (contains? cfeat/backend-only-features %)
|
||||||
|
(= "text-editor/v2" %)
|
||||||
|
(= "design-tokens/v1" %))))
|
||||||
(rx/observe-on :async)
|
(rx/observe-on :async)
|
||||||
(rx/map enable-feature))))
|
(rx/map enable-feature))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue