@lisergia/cli 21.0.0 → 23.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/index.js +1 -1
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @lisergia/cli
2
2
 
3
+ ## 23.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - Add IS_LINKS_ENABLED flag.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @lisergia/config-eslint@23.0.0
13
+ - @lisergia/config-tsconfig@23.0.0
14
+
15
+ ## 22.0.0
16
+
17
+ ### Major Changes
18
+
19
+ - Make sure Viewport unsubscribes events.
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @lisergia/config-eslint@22.0.0
25
+ - @lisergia/config-tsconfig@22.0.0
26
+
3
27
  ## 21.0.0
4
28
 
5
29
  ### Major Changes
package/index.js CHANGED
@@ -69,7 +69,7 @@ const config = {
69
69
  fileName: 'bundle.css',
70
70
  outputStyle: 'compressed',
71
71
  processor: () => postcss([autoprefixer()]),
72
- silenceDeprecations: ['color-functions', 'global-builtin', 'import', 'legacy-js-api', 'slash-div'],
72
+ silenceDeprecations: ['color-functions', 'global-builtin', 'if-function', 'import', 'legacy-js-api', 'slash-div'],
73
73
  watch: path.join(configuration.src, 'styles'),
74
74
  }),
75
75
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@lisergia/cli",
3
- "version": "21.0.0",
3
+ "version": "23.0.0",
4
4
  "bin": {
5
5
  "lisergia": "index.js"
6
6
  },
7
7
  "dependencies": {
8
- "@lisergia/config-eslint": "21.0.0",
9
- "@lisergia/config-tsconfig": "21.0.0",
8
+ "@lisergia/config-eslint": "23.0.0",
9
+ "@lisergia/config-tsconfig": "23.0.0",
10
10
  "@rollup/plugin-alias": "^5.1.1",
11
11
  "@rollup/plugin-commonjs": "^28.0.1",
12
12
  "@rollup/plugin-node-resolve": "^15.3.0",