@progress/kendo-common-tasks 7.9.5-ng12.76 → 7.9.5-ng12.82

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.
@@ -58,9 +58,4 @@ function set_status {
58
58
  curl -s -X POST -u "$CREDENTIALS" -d "$PAYLOAD" "$STATUS_URL"
59
59
  }
60
60
 
61
- # TODO: Remove 'then' after migrating from Shippable
62
- if [[ "$SHIPPABLE" == "true" ]]; then
63
- set_status 'Shippable'
64
- else
65
- set_status 'build'
66
- fi
61
+ set_status 'Run CI (kendo-workflows) / build'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-common-tasks",
3
3
  "description": "Build infrastructure helpers and gulp tasks for Kendo UI Angular 2 / React components",
4
- "version": "7.9.5-ng12.76+c683c3c",
4
+ "version": "7.9.5-ng12.82+61caf2e",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/telerik/kendo-build-tasks.git"
@@ -43,7 +43,6 @@
43
43
  "gulp-rename": "^1.2.2",
44
44
  "gulp-sourcemaps": "2.6.5",
45
45
  "gulp-uglify": "^3.0.0",
46
- "gulp-wrap": "^0.15.0",
47
46
  "hbs": "^4.0.0",
48
47
  "highlight.js": "9.14.2",
49
48
  "jasmine-core": "^2.4.1",
@@ -66,7 +65,6 @@
66
65
  "webpack-dev-server": "^4.2.1",
67
66
  "webpack-sources": "^3.2.1",
68
67
  "webpack-stream": "7.0.0",
69
- "webpack-system-register": "^1.6.0",
70
68
  "yargs": "^3.30.0"
71
69
  },
72
70
  "jest": {
@@ -90,5 +88,5 @@
90
88
  "publishConfig": {
91
89
  "access": "public"
92
90
  },
93
- "gitHead": "c683c3cf53173e65898d3a40a13a2c6654e98238"
91
+ "gitHead": "61caf2e6d2cf7f08ac8bb24df1e30ce46da22da2"
94
92
  }
@@ -1,7 +1,5 @@
1
1
  const path = require('path');
2
2
  const _ = require('lodash');
3
- const WebpackSystemRegister = require('webpack-system-register');
4
- const wrap = require('gulp-wrap');
5
3
  const gulpUglify = require('gulp-uglify');
6
4
  const $ = require('gulp-load-plugins')();
7
5
 
@@ -18,16 +16,18 @@ module.exports = (gulp, { webpackConfig, distName, modules = [], webpackStream,
18
16
  gulp.task('build-systemjs-bundle', (done) => {
19
17
  const config = _.assign({}, webpackConfig);
20
18
 
21
- config.plugins = config.plugins || [];
22
- config.plugins.push(new WebpackSystemRegister({
23
- systemjsDeps: packageDependencies,
24
- registerName: packageName
25
- }));
19
+ config.output = {
20
+ library: {
21
+ type: 'system',
22
+ name: packageName
23
+ }
24
+ };
25
+
26
+ config.externals = packageDependencies;
26
27
 
27
28
  const fail = error => done(error);
28
29
  return gulp.src('src/main' + SRC_EXT_GLOB).on("error", fail)
29
30
  .pipe(webpackStream(config, webpack)).on("error", fail)
30
- .pipe(wrap({ src: path.join(__dirname, 'systemjs-bundle.template.js' ) }, { packageName: packageName, modules: modules }, { variable: "data" })).on("error", fail)
31
31
  .pipe($.rename((path) => {
32
32
  path.basename = distName;
33
33
  })).on("error", fail)
@@ -1,16 +0,0 @@
1
- <%= data.contents %>
2
-
3
- <% for (let idx = 0; idx < data.modules.length; idx++) { %>
4
- System.register('<%= data.packageName %>/<%= data.modules[idx]%>', ['<%= data.packageName %>'], function($__export) {
5
- var lib;
6
-
7
- return {
8
- setters: [function(dependency) {
9
- lib = dependency;
10
- }],
11
- execute: function() {
12
- $__export(lib.<%= data.modules[idx] %>);
13
- }
14
- };
15
- });
16
- <% } %>